You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
348 B
Go
24 lines
348 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
//"fmt"
|
|
"log"
|
|
//"net/http"
|
|
)
|
|
|
|
var logfile string
|
|
|
|
func main() {
|
|
var configfile string
|
|
flag.StringVar(&configfile, "c", "config.yaml", "config file")
|
|
flag.StringVar(&logfile, "log", "", "log file")
|
|
flag.Parse()
|
|
c, err := loadConfig(configfile)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
initRouters(c)
|
|
select {}
|
|
}
|