simplify input package but also build secretly new config file option

This commit is contained in:
Bel LaPointe
2023-03-02 09:45:56 -07:00
parent ef314b6b33
commit a732bdb6c3
6 changed files with 82 additions and 18 deletions

View File

@@ -5,5 +5,5 @@ type Input interface {
}
func New() Input {
return NewRandom(RandomCharFromRange('a', 'g'))
return NewRandom(randomCharFromRange('a', 'g'))
}