0
0
mirror of https://github.com/rls-moe/nyx synced 2024-09-27 16:03:45 +02:00
nyx/main.go
2017-03-12 20:37:53 +01:00

19 lines
255 B
Go

package main
import (
"fmt"
"go.rls.moe/nyx/config"
"go.rls.moe/nyx/http"
)
func main() {
c, err := config.Load()
if err != nil {
fmt.Printf("Could not read configuration: %s\n", err)
return
}
fmt.Println("Starting Server")
http.Start(c)
}