gokedex/command_help.go
2025-06-06 13:21:07 -06:00

16 lines
292 B
Go

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