EARFQUAKE

This commit is contained in:
Mitsu
2025-07-07 21:05:36 +02:00
commit 54123ab5ec
12 changed files with 871 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"github.com/mizuw/laterna/server/database"
"github.com/mizuw/laterna/server/globals"
"github.com/mizuw/laterna/server/http"
)
func main() {
globals.AppConfig = globals.LoadConfig("config.jsonc")
globals.InitLoggers()
go database.ConnectDB()
http.StartHTTPServer()
}