9 lines
222 B
Go
9 lines
222 B
Go
|
package config
|
||
|
|
||
|
// BasicService is used for simple services like Pprof or Prometheus monitoring.
|
||
|
type BasicService struct {
|
||
|
Enabled bool `yaml:"Enabled"`
|
||
|
Address string `yaml:"Address"`
|
||
|
Port string `yaml:"Port"`
|
||
|
}
|