package main import ( "fmt" "os" "k3gtpi.jumpingcrab.com/go-learning/pokedexcli/internal/pokecache" ) func commandExit(p *PokedexConfig, c *pokecache.Cache) error { fmt.Println("Closing the Pokedex... Goodbye!") os.Exit(0) return nil }