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
+8
View File
@@ -0,0 +1,8 @@
//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
}