10 lines
138 B
Go
10 lines
138 B
Go
|
package simple
|
||
|
|
||
|
import "errors"
|
||
|
|
||
|
var (
|
||
|
// {{{ IS NOT INIT
|
||
|
CommandTree_notInit = errors.New("Command tree is not initialized")
|
||
|
// }}}
|
||
|
)
|