9 lines
182 B
Go
9 lines
182 B
Go
package config
|
|
|
|
type Encrypt struct {
|
|
Key string `yaml:"key"`
|
|
IV string `yaml:"iv"`
|
|
PublicKey string `yaml:"public-key"`
|
|
PrivateKey string `yaml:"private-key"`
|
|
}
|