Documentation ¶ Index ¶ Constants type Executor func New(cmd command.Command) (Executor, error) type Help func NewHelp() (*Help, error) func (exe *Help) Print() func (exe *Help) Run() error type Spark func NewSpark() (*Spark, error) func (exe *Spark) Print() func (exe *Spark) Run() error Constants ¶ View Source const ( KeyHelp = "KEYHELP" KeySpark = "KEYSPARK" ) Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Executor ¶ type Executor interface { Print() Run() error } func New ¶ func New(cmd command.Command) (Executor, error) type Help ¶ type Help struct { Type string } func NewHelp ¶ func NewHelp() (*Help, error) func (*Help) Print ¶ func (exe *Help) Print() func (*Help) Run ¶ func (exe *Help) Run() error type Spark ¶ type Spark struct { Type string } func NewSpark ¶ func NewSpark() (*Spark, error) func (*Spark) Print ¶ func (exe *Spark) Print() func (*Spark) Run ¶ func (exe *Spark) Run() error Source Files ¶ View all Source files const.goexecutor.gohelp.gospark.go Click to show internal directories. Click to hide internal directories.