DPF/command.go

16 lines
212 B
Go
Raw Normal View History

2019-11-01 13:47:11 +00:00
package main
import "time"
// Command 命令相关
type Command struct {
commands string
commandTime time.Time
}
// NewCommand 生成一个命令
func NewCommand() *Command {
c := &Command{}
return c
}