We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d3e648 commit c41a78aCopy full SHA for c41a78a
atcoder-problems-backend/src/server/mod.rs
@@ -24,6 +24,7 @@ pub async fn run_server(
24
let host = "0.0.0.0";
25
HttpServer::new(move || {
26
App::new()
27
+ .app_data(web::Data::new(github_client.clone()))
28
.app_data(web::Data::new(pg_pool.clone()))
29
.wrap(GithubAuthentication::new(github_client.clone()))
30
.wrap(
0 commit comments