1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-20 00:39:17 +08:00

11 lines
233 B
Go
Raw Normal View History

2023-03-29 14:58:28 +08:00
package response
import "github.com/1Panel-dev/1Panel/backend/app/model"
type RuntimeRes struct {
model.Runtime
2023-04-02 16:54:00 +08:00
AppParams []AppParam `json:"appParams"`
AppID uint `json:"appId"`
Source string `json:"source"`
2023-03-29 14:58:28 +08:00
}