github.com/nspcc-dev/neo-go@v0.105.2-0.20240517133400-6be757af3eba/pkg/config/basic_service.go (about)

     1  package config
     2  
     3  // BasicService is used as a simple base for node services like Pprof, RPC or
     4  // Prometheus monitoring.
     5  type BasicService struct {
     6  	Enabled bool `yaml:"Enabled"`
     7  	// Addresses holds the list of bind addresses in the form of "address:port".
     8  	Addresses []string `yaml:"Addresses"`
     9  }