DPF/command.go
huangsimin 5515ece4f0 init
2019-11-01 21:47:11 +08:00

16 lines
212 B
Go

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