tmf634-quote 0.3.0

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

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_quote_by_id as db_get_quote_by_id, get_quotes as db_get_quotes};