1//! This module aggregates and re-exports all API endpoint handler functions.
2//!
3//! It serves as a central point for managing the logic that responds to various
4//! HTTP requests, categorizing handlers by their domain (e.g., authentication, tickets).
5pub mod auth;
6pub mod ticket;