23 lines
283 B
Go
23 lines
283 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() {
|
||
|
app := core.NewApp()
|
||
|
pretty.Println(app.Conf())
|
||
|
|
||
|
println("Waiting")
|
||
|
select {}
|
||
|
}
|