From c1e02b04c63e5514de79eb0cce51567b55c2521a Mon Sep 17 00:00:00 2001 From: znpra Date: Sun, 6 Aug 2023 10:01:13 -0400 Subject: [PATCH] #i may be stupid --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 76b8634..d7335c7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -23,8 +23,8 @@ async fn main() { sqlx::migrate!("./migrations").run(&pool).await.unwrap(); let app = Router::new() - .route("/api/the_third_can/hello", get(|| async { "hello world!" })) - .route("/api/the_third_can/pronouns/:user", get(user_pronouns)) + .route("/api/thethirdcan/hello", get(|| async { "hello world!" })) + .route("/api/thethirdcan/pronouns/:user", get(user_pronouns)) .with_state(pool); axum::Server::bind(&SocketAddr::new(IpAddr::from([0;4]), port))