8 lines
109 B
Go
8 lines
109 B
Go
package config
|
|
|
|
type Config struct {
|
|
PublicKeyPath string
|
|
PrivateKeyPath string
|
|
}
|
|
|
|
var Default = Config{}
|