Skip to content

Commit 497d68c

Browse files
committed
fix: accidenally a line
1 parent 0d4f9ba commit 497d68c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,12 +93,12 @@ async fn main() {
9393
};
9494

9595
let app = Router::new()
96-
.with_state(state.clone())
9796
.route("/token", post(handlers::token))
9897
.route(
9998
"/introspect",
10099
post(handlers::introspect),
101-
);
100+
)
101+
.with_state(state.clone());
102102

103103
let listener = tokio::net::TcpListener::bind(cfg.bind_address)
104104
.await

0 commit comments

Comments
 (0)