feat: support inline rule provider (#1731)

This commit is contained in:
qianlongzt
2024-12-19 09:16:45 +08:00
committed by GitHub
parent 3f6823ba49
commit bb803249fa
4 changed files with 135 additions and 31 deletions

View File

@@ -13,6 +13,7 @@ const (
File VehicleType = iota
HTTP
Compatible
Inline
)
// VehicleType defined
@@ -26,6 +27,8 @@ func (v VehicleType) String() string {
return "HTTP"
case Compatible:
return "Compatible"
case Inline:
return "Inline"
default:
return "Unknown"
}