tmf622_ordering/lib.rs
1//! TMF622 - Product Ordering Management API
2//!
3//! This module implements the TM Forum Product Ordering Management API,
4//! providing a standardized interface for managing customer product orders.
5
6pub mod api;
7pub mod auth;
8pub mod db;
9pub mod handlers;
10pub mod models;
11
12pub use auth::*;
13pub use handlers::*;
14pub use models::*;
15
16// Re-export db functions with explicit names to avoid conflicts
17pub use db::{get_order_by_id as db_get_order_by_id, get_orders as db_get_orders};