15 lines
212 B
Go
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)
|
|
}
|