Import and update the file service application and orizentic #72

Merged
savanni merged 36 commits from file-service into main 2023-10-03 23:50:54 +00:00
1 changed files with 0 additions and 21 deletions
Showing only changes of commit 2f6be84a43 - Show all commits

View File

@ -29,27 +29,6 @@ pub use file_service::{
};
pub use handlers::handle_index;
/*
async fn authenticate_user(app: App, auth_token: String) -> Result<Username, warp::Rejection> {
match app.auth_session(SessionToken::from(auth_token)).await {
Ok(username) => Ok(username),
Err(_) => Err(warp::reject::not_found()),
}
}
*/
/*
*/
/*
*/
/*
*/
/*
*/
#[derive(Clone)]
pub struct App {
authdb: Arc<RwLock<AuthDB>>,