From 497d68cb80d294cbcf0c41aea921010eecd943b5 Mon Sep 17 00:00:00 2001 From: Trong Huu Nguyen Date: Sat, 2 Nov 2024 12:21:52 +0100 Subject: [PATCH] fix: accidenally a line --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 0d2f348..f335c54 100644 --- a/src/main.rs +++ b/src/main.rs @@ -93,12 +93,12 @@ async fn main() { }; let app = Router::new() - .with_state(state.clone()) .route("/token", post(handlers::token)) .route( "/introspect", post(handlers::introspect), - ); + ) + .with_state(state.clone()); let listener = tokio::net::TcpListener::bind(cfg.bind_address) .await