mirror of
https://github.com/directorz/mailfull-go.git
synced 2025-12-17 17:47:04 +00:00
14 lines
194 B
Go
14 lines
194 B
Go
package command
|
|
|
|
import (
|
|
"github.com/mitchellh/cli"
|
|
)
|
|
|
|
// Meta is for `*Command` struct.
|
|
type Meta struct {
|
|
UI *cli.BasicUi
|
|
CmdName string
|
|
SubCmdName string
|
|
Version string
|
|
}
|