Files
EdgeCommon/pkg/serverconfigs/firewallconfigs/http_firewall_action_block.go

9 lines
251 B
Go
Raw Normal View History

2020-10-06 21:02:21 +08:00
package firewallconfigs
// url client configure
type HTTPFirewallBlockAction struct {
StatusCode int `yaml:"statusCode" json:"statusCode"`
Body string `yaml:"body" json:"body"` // supports HTML
URL string `yaml:"url" json:"url"`
}