errorable and seperated runner methods for auth

This commit is contained in:
realaravinth
2021-06-28 19:16:59 +05:30
parent 2162d32455
commit cc17f2048f
9 changed files with 222 additions and 135 deletions

View File

@@ -18,7 +18,7 @@
use actix_identity::Identity;
use actix_web::{web, HttpResponse, Responder};
use super::auth::Password;
use super::auth::runners::Password;
use crate::errors::*;
use crate::AppData;

View File

@@ -20,7 +20,7 @@ use actix_web::test;
use super::email::*;
use super::*;
use crate::api::v1::auth::*;
use crate::api::v1::auth::runners::Password;
use crate::api::v1::ROUTES;
use crate::data::Data;
use crate::*;