Rename "backend" package to "core"

This commit is contained in:
2024-08-08 16:49:34 -04:00
parent ba4f7f2340
commit c83a3aa018
25 changed files with 109 additions and 107 deletions
+9
View File
@@ -0,0 +1,9 @@
//go:build !returnOnExit
package core
import "os"
func Exit(code int) {
os.Exit(code)
}