- Restructure domain/, repositories/, and routes/api/ into themed subdirectories: coffee/, auth/, analytics/ (and system/ for routes) - Convert super:: relative imports to crate:: absolute paths - Promote macro visibility from pub(super) to pub(crate) - Add pub use re-exports for backward-compatible import paths
10 lines
340 B
Rust
10 lines
340 B
Rust
pub mod analytics;
|
|
pub mod auth;
|
|
pub mod coffee;
|
|
pub(crate) mod macros;
|
|
pub mod pagination;
|
|
|
|
// Re-exports for backward compatibility
|
|
pub use analytics::{ai_usage, stats, timeline_events};
|
|
pub use auth::{passkey_credentials, registration_tokens, sessions, tokens, users};
|
|
pub use coffee::{bags, brews, cafes, cups, gear, roasters, roasts};
|