use axum::routing::get; use acrate_utils::web_server; mod config; mod route; #[tokio::main] async fn main() { web_server!( on: *config::ACRATE_RDSERVER_BIND_ADDRESS(), templates: [ "rd.html.j2" ], routes: { "/*path" => get(route::webfinger_handler), "/.healthcheck" => get(route::healthcheck_handler) } ); }