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 a067517 commit a800d21Copy full SHA for a800d21
fplus-http-server/src/middleware/gh_auth.rs
@@ -7,7 +7,7 @@ use reqwest::Client;
7
use serde::Deserialize;
8
9
// Import any other modules that you reference in this file
10
-use fplus_database::database;
+use fplus_database::database::allocators::get_allocator;
11
#[derive(Deserialize, Debug)]
12
struct RepoQuery {
13
owner: String,
@@ -106,7 +106,7 @@ where
106
}
107
108
109
- match database::get_allocator(&owner, &repo).await {
+ match get_allocator(&owner, &repo).await {
110
Ok(allocator) => {
111
if let Some(allocator) = &allocator {
112
if let Some(verifiers) = &allocator.verifiers_gh_handles {
0 commit comments