Files
imphnen-backend-service/src/apps/v1/gacha/mod.rs
T
2025-03-14 17:50:37 +07:00

17 lines
367 B
Rust

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))
}