变更XXX_extractor包名

This commit is contained in:
李运家 2024-10-01 17:24:40 +08:00
parent e0d9d708dc
commit a3935408b5
9 changed files with 5 additions and 4 deletions

View File

@ -9,4 +9,5 @@ pub mod cache;
pub mod context; pub mod context;
pub mod task; pub mod task;
pub mod utils; pub mod utils;
pub mod validator; pub mod extractor;
pub mod router;

0
library/src/router.rs Normal file
View File

View File

@ -1,5 +1,5 @@
use domain::{dto::account::{AuthenticateGooleAccountReq, AuthenticateWithPassword, RefreshToken}, vo::account::{LoginAccount, RefreshTokenResult}}; use domain::{dto::account::{AuthenticateGooleAccountReq, AuthenticateWithPassword, RefreshToken}, vo::account::{LoginAccount, RefreshTokenResult}};
use library::{context::Context, model::response::ResResult, validator::body_extractor::JsonBody}; use library::{context::Context, model::response::ResResult, extractor::body_extractor::JsonBody};
use crate::service; use crate::service;

View File

@ -3,8 +3,8 @@ use domain::dto::pageable::PageParams;
use domain::vo::feedback::FeedbackPageable; use domain::vo::feedback::FeedbackPageable;
use library::context::Context; use library::context::Context;
use library::model::response::ResResult; use library::model::response::ResResult;
use library::validator::body_extractor::JsonBody; use library::extractor::body_extractor::JsonBody;
use library::validator::query_extractor::QueryParams; use library::extractor::query_extractor::QueryParams;
use crate::service; use crate::service;