forked from TrueCloudLab/neoneo-go
9 lines
283 B
Go
9 lines
283 B
Go
|
package config
|
||
|
|
||
|
// InternalService stores configuration for internal services that don't have
|
||
|
// any network configuration, but use a wallet and can be enabled/disabled.
|
||
|
type InternalService struct {
|
||
|
Enabled bool `yaml:"Enabled"`
|
||
|
UnlockWallet Wallet `yaml:"UnlockWallet"`
|
||
|
}
|