Files
Laterna/server/main.go
T
2025-07-07 21:05:36 +02:00

16 lines
298 B
Go

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()
}