crowdsec/pkg/waf/waf_expr_lib.go
Sebastien Blot 393a8b8ef5
linting
2023-12-04 11:31:31 +01:00

12 lines
245 B
Go

package waf
//This is a copy paste from expr_lib.go, we probably want to only have one ?
type exprCustomFunc struct {
name string
function func(params ...any) (any, error)
signature []interface{}
}
var exprFuncs = []exprCustomFunc{}