Fix soft exit function not specifying a return value

This commit is contained in:
2024-12-16 13:10:07 -05:00
parent 1db9467446
commit 1cebb39546
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,6 +3,6 @@
package core
// Exit (soft) is meant to be used in interactive implementations (GUIs/TUIs) to keep the program running after an operation.
func Exit(code int) {
func Exit(code int) int {
return code
}