mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/1Panel-dev/1Panel.git
synced 2026-09-20 16:13:59 +08:00
18 lines
328 B
Go
18 lines
328 B
Go
package model
|
|
|
|
type ComposeTemplate struct {
|
|
BaseModel
|
|
|
|
Name string `gorm:"not null;unique" json:"name"`
|
|
Description string `json:"description"`
|
|
Content string `json:"content"`
|
|
}
|
|
|
|
type Compose struct {
|
|
BaseModel
|
|
|
|
Name string `json:"name"`
|
|
Path string `json:"path"`
|
|
IsPinned bool `json:"isPinned"`
|
|
}
|