mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-07-14 01:22:09 -04:00
7 lines
116 B
Go
7 lines
116 B
Go
package diceware
|
|
|
|
type DicewareGenerator interface {
|
|
Generate(int) ([]string, error)
|
|
MustGenerate(int) []string
|
|
}
|