Cosmos-Server/src/index.go

14 lines
158 B
Go
Raw Normal View History

2023-02-11 16:00:16 +00:00
package main
import (
2023-02-26 22:26:09 +00:00
"log"
2023-02-11 16:00:16 +00:00
)
func main() {
log.Println("Starting...")
2023-02-26 22:26:09 +00:00
config := GetConfig()
2023-02-11 16:00:16 +00:00
2023-02-26 22:26:09 +00:00
defer StopServer()
StartServer(config.HTTPConfig)
2023-02-11 16:00:16 +00:00
}