mirror of
https://github.com/kaaninchen/Laterna.git
synced 2026-09-17 19:12:48 +00:00
16 lines
298 B
Go
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()
|
|
}
|