Always hard exit in PrintError(); do not pointlessly return the error code in soft exit

This commit is contained in:
2025-06-01 16:58:29 -04:00
parent 71b5056ca6
commit 83b0be1379
2 changed files with 5 additions and 10 deletions
+2 -2
View File
@@ -3,6 +3,6 @@
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
func Exit(code int) {
return
}