Sync
This commit is contained in:
parent
9bfdfb7f07
commit
54fe7bbffd
5
command_map.go
Normal file
5
command_map.go
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
package main
|
||||||
|
|
||||||
|
func commandMap() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
5
repl.go
5
repl.go
@ -63,5 +63,10 @@ func getCommands() map[string]cliCommand{
|
|||||||
description: "Exits the Pokedex",
|
description: "Exits the Pokedex",
|
||||||
callback: commandExit,
|
callback: commandExit,
|
||||||
},
|
},
|
||||||
|
"map": {
|
||||||
|
name: "map",
|
||||||
|
description: "Print Pokemon world locations.",
|
||||||
|
callback: commandMap,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user