doodle/cmd/doodle/main.go

27 lines
298 B
Go
Raw Normal View History

2017-10-27 01:03:11 +00:00
package main
import (
"flag"
"github.com/kirsle/doodle"
)
// Build number is the git commit hash.
var Build string
// Command line args
var (
debug bool
)
func init() {
flag.BoolVar(&debug, "debug", false, "Debug mode")
}
func main() {
flag.Parse()
app := doodle.New(debug)
_ = app
}