Start laying out the structure of gooni

This commit is contained in:
Arturo Filastò
2018-02-07 20:02:18 +02:00
commit 7327e1ff7f
22 changed files with 529 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
package root
import (
"github.com/alecthomas/kingpin"
"github.com/openobservatory/gooni/internal/util"
)
// Cmd is the root command
var Cmd = kingpin.New("ooni", "")
// Command is syntax sugar for defining sub-commands
var Command = Cmd.Command
func init() {
Cmd.PreAction(func(ctx *kingpin.ParseContext) error {
util.Log("Running pre-action")
return nil
})
}