tmf642_alarm/lib.rs
1//! TMF642 - Alarm Management API
2//!
3//! This module implements the TM Forum Alarm Management API,
4//! providing a standardized interface for managing network alarms and NOC workflows.
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_alarm_by_id as db_get_alarm_by_id, get_alarms as db_get_alarms};