Files
higress/plugins/wasm-go/pkg/matcher/utils.go
2024-07-15 14:00:02 +08:00

9 lines
80 B
Go

package matcher
func boolToInt(b bool) int {
if b {
return 1
}
return 0
}