mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-15 16:51:44 -05:00
7 lines
116 B
Go
7 lines
116 B
Go
package diceware
|
|
|
|
type DicewareGenerator interface {
|
|
Generate(int) ([]string, error)
|
|
MustGenerate(int) []string
|
|
}
|