mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
12 lines
305 B
Go
12 lines
305 B
Go
package types
|
|
|
|
// EnvironmentDetail 环境详情
|
|
type EnvironmentDetail struct {
|
|
Type string `json:"type"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Slug string `json:"slug"`
|
|
Installed bool `json:"installed"`
|
|
HasUpdate bool `json:"has_update"`
|
|
}
|