gokedex/command_help.go

16 lines
267 B
Go

package main
import "fmt"
func commandHelp() error {
fmt.Println()
fmt.Println("Welcome to the Pokedex!")
fmt.Println("Usage:")
fmt.Println()
for _, c := range getCommands() {
fmt.Printf("\t%v\t\t%v\n", c.name, c.description)
}
fmt.Println()
return nil
}