Files
1Panel/agent/app/model/compose_template.go
2026-07-30 09:39:47 +08:00

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"`
}