pokecli/internal/commands/pokedex.go

12 lines
240 B
Go
Raw Normal View History

package commands
import "codeflow.dananglin.me.uk/apollo/pokecli/internal/poketrainer"
func PokedexFunc(trainer *poketrainer.Trainer) CommandFunc {
return func(_ []string) error {
trainer.ListAllPokemonFromPokedex()
return nil
}
}