tmf639_resource_inventory/lib.rs
1//! TMF639 - Resource Inventory Management API
2//!
3//! This module implements the TM Forum Resource Inventory Management API,
4//! providing a standardized interface for managing physical and virtual network resources.
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::{
18 get_resource_inventories as db_get_resource_inventories,
19 get_resource_inventory_by_id as db_get_resource_inventory_by_id,
20};