feat: user relation
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
use axum::{routing::post, Router};
|
||||
|
||||
pub mod gacha_controller;
|
||||
pub mod gacha_dto;
|
||||
pub mod gacha_repository;
|
||||
pub mod gacha_schema;
|
||||
pub mod gacha_service;
|
||||
|
||||
pub use gacha_dto::*;
|
||||
pub use gacha_repository::*;
|
||||
pub use gacha_schema::*;
|
||||
pub use gacha_service::*;
|
||||
|
||||
pub fn gacha_router() -> Router {
|
||||
Router::new().route("/create", post(gacha_controller::post_create_gacha))
|
||||
}
|
||||
Reference in New Issue
Block a user