mirror of https://github.com/pressly/goose.git
35 lines
552 B
Go
35 lines
552 B
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"os"
|
|
)
|
|
|
|
// shamelessly snagged from the go tool
|
|
// each command gets its own set of args,
|
|
// defines its own entry point, and provides its own help
|
|
type Command struct {
|
|
Run func(cmd *Command, args ...string)
|
|
Flag flag.FlagSet
|
|
|
|
Name string
|
|
Usage string
|
|
|
|
Summary string
|
|
Help string
|
|
}
|
|
|
|
func (c *Command) Exec(args []string) {
|
|
c.Flag.Usage = func() {
|
|
// helpFunc(c, c.Name)
|
|
}
|
|
c.Flag.Parse(args)
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
panic(r)
|
|
}
|
|
os.Exit(1)
|
|
}()
|
|
c.Run(c, c.Flag.Args()...)
|
|
}
|