Skip to main content

tmf634_quote/
lib.rs

1//! TMF634 - Quote Management API
2//!
3//! This module implements the TM Forum Quote Management API,
4//! providing a standardized interface for managing product and service quotes.
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_quote_by_id as db_get_quote_by_id, get_quotes as db_get_quotes};