forked from TrueCloudLab/neoneo-go
8 lines
133 B
Go
8 lines
133 B
Go
|
package wallet
|
||
|
|
||
|
// Config is a wallet info.
|
||
|
type Config struct {
|
||
|
Path string `yaml:"Path"`
|
||
|
Password string `yaml:"Password"`
|
||
|
}
|