tank/code/core/command.go

11 lines
221 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package core
/**
* 从命令行输入的相关信息
*/
type Command interface {
//判断是否为命名行模式如果是直接按照命名行模式处理并返回true。如果不是返回false.
Cli() bool
}