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
2017-06-07 22:00:17 +00:00

15 lines
212 B
Go

package instrument
import "time"
type RequestData struct {
Section string
ID string
Search string
Fmt string
Duration time.Duration
}
type Instrument interface {
Request(req RequestData)
}