mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:47:20 +08:00
16 lines
362 B
Go
16 lines
362 B
Go
package request
|
|
|
|
type EnvironmentPHPVersion struct {
|
|
Version uint `json:"version"`
|
|
}
|
|
|
|
type EnvironmentPHPModule struct {
|
|
Version uint `json:"version"`
|
|
Slug string `form:"slug" json:"slug" validate:"required"`
|
|
}
|
|
|
|
type EnvironmentPHPUpdateConfig struct {
|
|
Version uint `json:"version"`
|
|
Config string `form:"config" json:"config" validate:"required"`
|
|
}
|