mirror of
https://github.com/alibaba/higress.git
synced 2026-02-23 20:20:50 +08:00
9 lines
80 B
Go
9 lines
80 B
Go
package matcher
|
|
|
|
func boolToInt(b bool) int {
|
|
if b {
|
|
return 1
|
|
}
|
|
return 0
|
|
}
|