mirror of
https://github.com/tnb-labs/panel.git
synced 2026-09-01 14:55:12 +08:00
874abf005d
编译型应用与 PHP/Python 环境支持持久化的前置脚本与 configure 参数, 保存在 storage/customize 随安装更新自动生效,并接入面板备份与修复 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
15 lines
480 B
Go
15 lines
480 B
Go
package types
|
|
|
|
// EnvironmentDetail 环境详情
|
|
type EnvironmentDetail struct {
|
|
Type string `json:"type"`
|
|
Name string `json:"name"`
|
|
Description string `json:"description"`
|
|
Slug string `json:"slug"`
|
|
Version string `json:"version"`
|
|
InstalledVersion string `json:"installed_version"`
|
|
Installed bool `json:"installed"`
|
|
HasUpdate bool `json:"has_update"`
|
|
CustomSupported bool `json:"custom_supported"`
|
|
}
|