16 lines
392 B
Go
16 lines
392 B
Go
|
package public
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// Commands -
|
||
|
type Command struct {
|
||
|
Key string `db:"key"`
|
||
|
Platform string `db:"platform"`
|
||
|
Binding string `db:"binding"`
|
||
|
RequireManage bool `db:"require_manage"`
|
||
|
RequireInit bool `db:"require_init"`
|
||
|
Value string `db:"value"`
|
||
|
Ctime time.Time `db:"ctime"`
|
||
|
Mtime time.Time `db:"mtime"`
|
||
|
}
|