Files
chess/cmd/chess-client-cli/exit_native.go

12 lines
177 B
Go

//go:build !js && !wasm
package main
import (
"chess/internal/client/display"
)
func handleExit() (restart bool) {
display.Println(display.Cyan, "Goodbye!")
return false
}