mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-29 14:31:15 +08:00
10 lines
211 B
Go
10 lines
211 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Command struct {
|
|
gorm.Model
|
|
Name string `gorm:"type:varchar(64);unique;not null" json:"name"`
|
|
Command string `gorm:"type:varchar(256);not null" json:"command"`
|
|
}
|