mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-31 07:26:36 +08:00
10 lines
326 B
Go
10 lines
326 B
Go
package firewallconfigs
|
|
|
|
// HTTPFirewallBlockAction 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"`
|
|
Timeout int32 `yaml:"timeout" json:"timeout"`
|
|
}
|