mirror of
https://github.com/rwinkhart/libmutton.git
synced 2026-08-28 12:56:31 -04:00
11 lines
205 B
Go
11 lines
205 B
Go
//go:build !interactive
|
|
|
|
package core
|
|
|
|
import "os"
|
|
|
|
// Exit (hard) is meant to be used in non-interactive CLI implementations to exit the program after an operation.
|
|
func Exit(code int) {
|
|
os.Exit(code)
|
|
}
|