diff --git a/command_map.go b/command_map.go new file mode 100644 index 0000000..ad5acfd --- /dev/null +++ b/command_map.go @@ -0,0 +1,5 @@ +package main + +func commandMap() error { + return nil +} diff --git a/repl.go b/repl.go index 89366f4..34d282c 100644 --- a/repl.go +++ b/repl.go @@ -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, + }, } }