Skip to content

Commit

Permalink
fix: accidenally a line
Browse files Browse the repository at this point in the history
  • Loading branch information
tronghn committed Nov 2, 2024
1 parent 0d4f9ba commit 497d68c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 497d68c

Please sign in to comment.