mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-20 16:59:17 +08:00
a627aa9915
* feat: merge from dev * feat: Merge mobile style code from the dev branch
17 lines
285 B
Go
17 lines
285 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"`
|
|
}
|