mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-11 09:45:43 +08:00
7 lines
187 B
Go
7 lines
187 B
Go
package model
|
|
|
|
type Command struct {
|
|
BaseModel
|
|
Name string `gorm:"type:varchar(64);unique;not null" json:"name"`
|
|
Command string `gorm:"type:varchar(256);not null" json:"command"`
|
|
}
|