mirror of
https://github.com/status-im/go-waku.git
synced 2025-01-12 23:04:45 +00:00
10 lines
227 B
Go
10 lines
227 B
Go
package keygen
|
|
|
|
// GenerateKeyOptions contains all the settings that can be used when generating
|
|
// a keyfile with the generate-key command
|
|
type GenerateKeyOptions struct {
|
|
KeyFile string
|
|
KeyPasswd string
|
|
Overwrite bool
|
|
}
|