From 54fe7bbffd013e3bbee1ea28d679ee2feedc0ab0 Mon Sep 17 00:00:00 2001 From: V Date: Sun, 28 Sep 2025 21:57:48 +0100 Subject: [PATCH] Sync --- command_map.go | 5 +++++ repl.go | 5 +++++ 2 files changed, 10 insertions(+) create mode 100644 command_map.go 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, + }, } }