tuimenu/simple/erros.go

10 lines
138 B
Go
Raw Normal View History

2024-10-16 22:07:31 +02:00
package simple
import "errors"
var (
// {{{ IS NOT INIT
CommandTree_notInit = errors.New("Command tree is not initialized")
// }}}
)