Files
EdgeNode/internal/waf/checkpoints/param_option.go
刘祥超 04b9a65d4d 实现WAF
2020-10-08 15:06:42 +08:00

22 lines
387 B
Go

package checkpoints
type KeyValue struct {
Name string `json:"name"`
Value string `json:"value"`
}
type ParamOptions struct {
Options []*KeyValue `json:"options"`
}
func NewParamOptions() *ParamOptions {
return &ParamOptions{}
}
func (this *ParamOptions) AddParam(name string, value string) {
this.Options = append(this.Options, &KeyValue{
Name: name,
Value: value,
})
}