You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package core
|
|
|
|
|
|
/**
|
|
|
* 从命令行输入的相关信息
|
|
|
*/
|
|
|
type Command interface {
|
|
|
|
|
|
//判断是否为命名行模式,如果是直接按照命名行模式处理,并返回true。如果不是返回false.
|
|
|
Cli() bool
|
|
|
}
|
|
|
|