tmf622-ordering 0.2.5

TM Forum TMF622 Product Ordering Management API implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! TMF622 - Product Ordering Management API
//!
//! This module implements the TM Forum Product Ordering Management API,
//! providing a standardized interface for managing customer product orders.

pub mod api;
pub mod auth;
pub mod db;
pub mod handlers;
pub mod models;

pub use auth::*;
pub use handlers::*;
pub use models::*;

// Re-export db functions with explicit names to avoid conflicts
pub use db::{get_order_by_id as db_get_order_by_id, get_orders as db_get_orders};