yeast/app.go
2015-02-11 02:51:01 +07:00

26 lines
320 B
Go

package main
import (
"flag"
"github.com/kr/pretty"
"github.com/localhots/confection"
"github.com/localhots/yeast/core"
)
func init() {
confection.SetupFlags()
flag.Parse()
}
func main() {
core.InitConfig()
core.LoadUnits()
core.ParseChains()
pretty.Println(core.Conf())
println("Waiting")
select {}
}