doodle/cmd/doodle/main.go

27 lines
298 B
Go

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
}