minimal routing code

This commit is contained in:
Nicholas Orlowsky 2025-11-19 18:32:06 -05:00
parent 2d8f131b91
commit a7d323056a
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
6 changed files with 151 additions and 20 deletions

View file

@ -105,6 +105,7 @@ async fn main() -> ::anyhow::Result<()> {
.service(controllers::route::get_route)
.service(controllers::route::get_routes_json)
.service(controllers::route::get_routes_html)
.service(controllers::route::get_directions)
.service(get_index)
.service(actix_files::Files::new("/assets", "./assets"))
})