package input type Input interface { Read() []Button } func New() Input { return NewRandom(RandomCharFromRange('a', 'g')) }