mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-01 06:28:06 +08:00
8 lines
217 B
Go
8 lines
217 B
Go
package request
|
|
|
|
type NginxConfigFileUpdate struct {
|
|
Content string `json:"content" validate:"required"`
|
|
FilePath string `json:"filePath" validate:"required"`
|
|
Backup bool `json:"backup" validate:"required"`
|
|
}
|