diff --git a/peach-web/src/public_router.rs b/peach-web/src/public_router.rs index fd433f3..a397db4 100644 --- a/peach-web/src/public_router.rs +++ b/peach-web/src/public_router.rs @@ -18,6 +18,9 @@ use crate::{ /// by querying the `session_data`. If the user is authenticated, pass their /// request to the private router. Otherwise, redirect them to the login page. pub fn handle_route(request: &Request, session_data: &mut Option) -> Response { + + return Response::html("this is running"); + // static file server // matches on assets in the `static` directory let static_response = rouille::match_assets(request, "static");