Files
go-boilerplate/back/exitSoft.go
T
2025-05-09 15:43:43 +00:00

9 lines
205 B
Go

//go:build interactive
package back
// Exit (soft) is meant to be used in interactive implementations (GUIs/TUIs) to keep the program running after an operation.
func Exit(code int) int {
return code
}