Implement rate limiting middleware for authentication endpoints, adding security headers middleware, and comprehensive error handling. Enhance validation tests for various DTOs and ensure proper functionality of gacha credits and rolls. Add unit tests for rate limiting and security headers middleware to validate behavior under different conditions.
This commit is contained in:
@@ -1,6 +1,13 @@
|
||||
pub mod gacha_credits_controller;
|
||||
pub mod gacha_credits_dto;
|
||||
pub mod gacha_credits_repository;
|
||||
pub mod gacha_credits_schema;
|
||||
pub mod gacha_credits_service;
|
||||
pub mod gacha_credits_router;
|
||||
|
||||
// Export only public types and functions
|
||||
pub use gacha_credits_dto::GachaCreditRequestDto;
|
||||
pub use gacha_credits_controller::GachaCreditController;
|
||||
pub use gacha_credits_dto::{GachaCreditRequestDto, GachaCreditResponseDto};
|
||||
pub use gacha_credits_repository::GachaCreditRepository;
|
||||
pub use gacha_credits_service::GachaCreditService;
|
||||
pub use gacha_credits_router::gacha_credit_router;
|
||||
|
||||
Reference in New Issue
Block a user