| 13 | pub mod types; |
| 14 | |
| 15 | pub struct OneshotHandler { |
| 16 | pub sender: Sender<i32>, |
| 17 | } |
| 18 | |
| 19 | async fn build_routes(store: store::Store) -> impl Filter<Extract = impl Reply> + Clone { |
| 20 | let store_filter = warp::any().map(move || store.clone()); |
nothing calls this directly
no outgoing calls
no test coverage detected