mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 05:31:44 +08:00
11 lines
249 B
Go
11 lines
249 B
Go
package frp
|
|
|
|
type Name struct {
|
|
Name string `form:"name" json:"name" validate:"required"`
|
|
}
|
|
|
|
type UpdateConfig struct {
|
|
Name string `form:"name" json:"name" validate:"required"`
|
|
Config string `form:"config" json:"config" validate:"required"`
|
|
}
|