mirror of
https://github.com/logos-messaging/logos-messaging-go.git
synced 2026-01-05 23:43:05 +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
|
||
|
|
}
|