diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2022-12-27 19:55:10 -0500 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2022-12-27 19:58:45 -0500 |
commit | 21b7b57336cd3bf7bd328ada38c6069a48504f85 (patch) | |
tree | c0d47337f584403febcfc9ec365ea1ea810e782e /server/src/main.rs | |
parent | 3418ebf4db2375e0dfe2343da57d674e1f4fd57f (diff) |
`cargo fmt`
Diffstat (limited to 'server/src/main.rs')
-rw-r--r-- | server/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main.rs b/server/src/main.rs index c0ec4cb..9034b67 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -61,7 +61,7 @@ async fn create_authenticator( async fn create_authenticator( db_pool: &PgPool, ) -> Box<dyn Authenticator + Send + Sync> { - create_default_authenticator(db_pool) + create_default_authenticator(db_pool).await } #[tokio::main] |