修改用户缓存名称

This commit is contained in:
李运家 2024-06-06 15:06:44 +08:00
parent 73ba894e7e
commit 3a397dee4e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
use chrono::Utc; use chrono::Utc;
use domain::dto::account::AuthenticateGooleAccountReq; use domain::dto::account::AuthenticateGooleAccountReq;
use domain::entities::account::Account; use domain::entities::account::Account;
use library::cache::login_cache::{LoginAccount, LOGIN_CACHE}; use library::cache::account_cache::{LoginAccount, LOGIN_CACHE};
use library::resp::response::ResErr::ErrPerm; use library::resp::response::ResErr::ErrPerm;
use library::resp::response::{ResErr, ResData, ResResult}; use library::resp::response::{ResErr, ResData, ResResult};
use library::social::google::GOOGLE_SOCIAL; use library::social::google::GOOGLE_SOCIAL;

View File

@ -4,7 +4,7 @@ use domain::{
entities::account::{Account, Role}, entities::account::{Account, Role},
}; };
use library::{ use library::{
cache::login_cache::{LoginAccount, LOGIN_CACHE}, db, resp::response::{ResErr, ResData, ResResult}, token::{generate_refresh_token, generate_token} cache::account_cache::{LoginAccount, LOGIN_CACHE}, db, resp::response::{ResErr, ResData, ResResult}, token::{generate_refresh_token, generate_token}
}; };