10 lines
145 B
Go
10 lines
145 B
Go
package config
|
|
|
|
const (
|
|
ProbeConfigFileName = "probe.json"
|
|
)
|
|
|
|
type ProbeConfig struct {
|
|
ID *string `json:"id,omitempty" yaml:"id" toml:"id"`
|
|
}
|