This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/lib/instrument/instrument.go

16 lines
212 B
Go
Raw Permalink Normal View History

2017-06-05 16:17:14 +00:00
package instrument
import "time"
2017-06-07 22:00:17 +00:00
type RequestData struct {
Section string
ID string
Search string
Fmt string
Duration time.Duration
}
2017-06-05 16:17:14 +00:00
type Instrument interface {
2017-06-07 22:00:17 +00:00
Request(req RequestData)
2017-06-05 16:17:14 +00:00
}