Cosmos-Server/src/index.go

17 lines
170 B
Go
Raw Normal View History

2023-02-11 16:00:16 +00:00
package main
import (
2023-03-10 20:59:56 +00:00
"./utils"
"time"
"math/rand"
2023-02-11 16:00:16 +00:00
)
func main() {
2023-03-10 20:59:56 +00:00
utils.Log("Starting...")
2023-02-11 16:00:16 +00:00
2023-03-10 20:59:56 +00:00
rand.Seed(time.Now().UnixNano())
2023-02-11 16:00:16 +00:00
2023-03-10 20:59:56 +00:00
LoadConfig()
StartServer()
2023-02-11 16:00:16 +00:00
}