mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-08 14:37:29 +08:00
18 lines
557 B
Go
18 lines
557 B
Go
package model
|
|
|
|
type McpServer struct {
|
|
BaseModel
|
|
Name string `json:"name"`
|
|
DockerCompose string `json:"dockerCompose"`
|
|
Command string `json:"command"`
|
|
ContainerName string `json:"containerName"`
|
|
Message string `json:"message"`
|
|
Port int `json:"port"`
|
|
Status string `json:"status"`
|
|
Env string `json:"env"`
|
|
BaseURL string `json:"baseUrl"`
|
|
SsePath string `json:"ssePath"`
|
|
WebsiteID int `json:"websiteID"`
|
|
Dir string `json:"dir"`
|
|
HostIP string `json:"hostIP"`
|
|
}
|