// // cli_contact.go // Copyright (C) 2022 tiglog // // Distributed under terms of the MIT license. // package console type ICommand interface { Init(args []string) GetName() string GetDesc() string GetAction() ActionHandler GetHelp() string } type IConsole interface { GetCmds() map[string]ICommand GetName() string GetDesc() string GetVersion() string GetExtraAbout() ActionHandler } type ActionHandler func() error