mtfosbot/model/commands.go

13 lines
291 B
Go
Raw Normal View History

2018-09-07 08:33:37 +00:00
package model
import "time"
// Commands - struct
type Commands struct {
Cmd string `db:"cmd" cc:"cmd"`
Message string `db:"message" cc:"message"`
Group string `db:"group" cc:"group"`
Ctime time.Time `db:"ctime" cc:"ctime"`
Mtime time.Time `db:"mtime" cc:"ctime"`
}