(config: ProxyConfig)
| 20 | |
| 21 | impl ProxyService { |
| 22 | pub fn new(config: ProxyConfig) -> Self { |
| 23 | Self { |
| 24 | config, |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | pub fn create_router(&self) -> Router { |
| 29 | let mut router = Router::new(); |
nothing calls this directly
no outgoing calls
no test coverage detected