mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-15 13:26:35 +08:00
9 lines
251 B
Go
9 lines
251 B
Go
|
|
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"`
|
||
|
|
}
|