implement proxy backend features

This commit is contained in:
yggverse 2025-07-24 06:25:01 +03:00
parent 77ee4aa78c
commit 4c305f967f
10 changed files with 281 additions and 1 deletions

View file

@ -0,0 +1,5 @@
pub struct Rule {
pub is_enabled: bool,
pub regex: String,
pub url: String,
}