overflow_probes/config/probe.go

10 lines
145 B
Go
Raw Normal View History

2017-09-21 11:04:30 +00:00
package config
2017-09-22 09:20:07 +00:00
const (
ProbeConfigFileName = "probe.json"
)
2017-09-21 11:04:30 +00:00
type ProbeConfig struct {
2017-09-22 09:20:07 +00:00
ID *string `json:"id,omitempty" yaml:"id" toml:"id"`
2017-09-21 11:04:30 +00:00
}