support service-level match config (#1112)

This commit is contained in:
rinfx
2024-07-15 14:00:02 +08:00
committed by GitHub
parent 46218058d1
commit c00c8827f9
3 changed files with 143 additions and 11 deletions

View File

@@ -0,0 +1,8 @@
package matcher
func boolToInt(b bool) int {
if b {
return 1
}
return 0
}