Files
EdgeNode/internal/waf/checkpoints/param_option.go

22 lines
387 B
Go
Raw Permalink Normal View History

2020-10-08 15:06:42 +08:00
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,
})
}