Files
libmutton/backend/exitHard.go
T

10 lines
95 B
Go

//go:build !returnOnExit
package backend
import "os"
func Exit(code int) {
os.Exit(code)
}