metricator/pkg/client/config.go
Stanislav N. aka pztrn 614526b16d
The very basic metricator-client and package.
Package can be used in external things if needed.
2020-12-24 23:06:13 +05:00

10 lines
219 B
Go

package client
// Config is a Metricator client configuration.
type Config struct {
// Host is a host where Metricator is available for requests.
Host string
// Timeout specifies HTTP client timeout.
Timeout int
}