mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 23:27:17 +08:00
11 lines
233 B
Go
11 lines
233 B
Go
package request
|
|
|
|
type FirewallStatus struct {
|
|
Status bool `json:"status" form:"status"`
|
|
}
|
|
|
|
type FirewallCreateRule struct {
|
|
Port uint `json:"port" validate:"required"`
|
|
Protocol string `json:"protocol" validate:"required"`
|
|
}
|