Files
panel/pkg/types/environment.go
T
耗子 874abf005d feat(app): 应用安装支持自定义编译参数
编译型应用与 PHP/Python 环境支持持久化的前置脚本与 configure 参数,
保存在 storage/customize 随安装更新自动生效,并接入面板备份与修复

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-20 06:27:39 +08:00

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"`
}