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

     1  package config
     2  
     3  // InternalService stores configuration for internal services that don't have
     4  // any network configuration, but use a wallet and can be enabled/disabled.
     5  type InternalService struct {
     6  	Enabled      bool   `yaml:"Enabled"`
     7  	UnlockWallet Wallet `yaml:"UnlockWallet"`
     8  }