Kubernetes path based routing

This commit is contained in:
Ara Sadoyan
2025-10-01 20:18:36 +02:00
parent 3541b20c80
commit 8a290e5084
2 changed files with 21 additions and 6 deletions

View File

@@ -12,6 +12,7 @@ pub type Headers = DashMap<String, DashMap<String, Vec<(String, String)>>>;
pub struct ServiceMapping {
pub proxy: String,
pub real: String,
pub path: Option<String>,
}
#[derive(Clone, Debug, Default)]