Remove dead comments

This commit is contained in:
Savanni D'Gerinel 2023-10-03 17:56:38 -04:00
parent 50ef8a77be
commit 2aa21d304b
1 changed files with 0 additions and 21 deletions

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>>,