This commit is contained in:
V 2025-09-28 21:57:48 +01:00
parent 9bfdfb7f07
commit 54fe7bbffd
2 changed files with 10 additions and 0 deletions

5
command_map.go Normal file
View File

@ -0,0 +1,5 @@
package main
func commandMap() error {
return nil
}

View File

@ -63,5 +63,10 @@ func getCommands() map[string]cliCommand{
description: "Exits the Pokedex",
callback: commandExit,
},
"map": {
name: "map",
description: "Print Pokemon world locations.",
callback: commandMap,
},
}
}