Siddhant Sahay
Results
1
comments of
Siddhant Sahay
An update: If i split the first module routes into 2 `or` with less filter it works again. ```rust let route = warp::path("health").and(warp::get()).map(|| "ok!"); let all_app_routes = warp::path("v1") .and( route...