2022-07-08 19:10:46 +03:00
|
|
|
package config
|
|
|
|
|
2022-11-24 16:03:08 +03:00
|
|
|
// BasicService is used as a simple base for node services like Pprof, RPC or
|
|
|
|
// Prometheus monitoring.
|
2022-07-08 19:10:46 +03:00
|
|
|
type BasicService struct {
|
2022-11-25 13:20:53 +03:00
|
|
|
Enabled bool `yaml:"Enabled"`
|
|
|
|
// Addresses holds the list of bind addresses in the form of "address:port".
|
|
|
|
Addresses []string `yaml:"Addresses"`
|
2022-11-24 16:03:08 +03:00
|
|
|
}
|