1
0
mirror of https://github.com/directorz/mailfull-go.git synced 2025-12-18 18:17:03 +00:00

Implement CLI scaffold

This commit is contained in:
teru
2016-07-31 10:09:32 +09:00
parent 7cac94f0f3
commit 1074ab5b72
4 changed files with 109 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package command
import (
"github.com/mitchellh/cli"
)
// Meta is for `*Command` struct.
type Meta struct {
UI *cli.BasicUi
CmdName string
SubCmdName string
Version string
}