gokedex/command_exit.go
2025-06-05 12:10:26 -06:00

13 lines
151 B
Go

package main
import (
"fmt"
"os"
)
func commandExit(cfg *config) error {
fmt.Println("Closing the Pokedex... Goodbye!")
os.Exit(0)
return nil
}