Initial code commit

This commit is contained in:
2025-05-09 15:43:43 +00:00
parent f08b95f350
commit 857b8526a1
9 changed files with 208 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build !interactive
package back
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)
}