pokedex_cli/command_exit.go

14 lines
244 B
Go
Raw Normal View History

2025-09-28 20:15:55 +00:00
package main
import (
"fmt"
"os"
2025-10-04 17:29:20 +00:00
"k3gtpi.jumpingcrab.com/go-learning/pokedexcli/internal/pokecache"
2025-09-28 20:15:55 +00:00
)
2025-10-04 17:29:20 +00:00
func commandExit(p *PokedexConfig, c *pokecache.Cache) error {
2025-09-28 20:15:55 +00:00
fmt.Println("Closing the Pokedex... Goodbye!")
os.Exit(0)
return nil
}