genofire/hs_monolith
genofire
/
hs_monolith
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
hs_monolith/cmd/rezension/main.go

39 lines
736 B
Go

package main
import (
"flag"
"log"
"net/http"
goji "goji.io"
http_api "github.com/genofire/hs_master-kss-monolith/http"
"github.com/genofire/hs_master-kss-monolith/models"
)
var (
configFile string
config *models.Config
timestamps bool
)
func main() {
flag.BoolVar(&timestamps, "timestamps", true, "print timestamps in output")
flag.StringVar(&configFile, "config", "config.conf", "path of configuration file (default:config.conf)")
flag.Parse()
// load config
config = models.ReadConfigFile(configFile)
if !timestamps {
log.SetFlags(0)
}
log.Println("Starting rezension monolith")
// Startwebsrver
router := goji.NewMux()
http_api.BindAPI(router)
http.ListenAndServe(config.WebserverBind, router)
}