pokedex_cli/command_exit.go

14 lines
244 B
Go

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
}