| 17 | |
| 18 | #[derive(Clone)] |
| 19 | pub struct ProxyUtil { |
| 20 | response_util: ResponseUtil, |
| 21 | db: Arc<DB>, |
| 22 | client: Arc<RestClient>, |
| 23 | } |
| 24 | |
| 25 | impl ProxyUtil { |
| 26 | pub fn new(response_util: ResponseUtil, db: Arc<DB>, client: Arc<RestClient>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected