unraid_notification/
lib.rs

1//! This crate provides functionality for sending notifications to the web gui in Unraid.
2//!
3//! # Modules
4//!
5//! - `notifier`: Contains the main notification logic.
6//! - `notificationlevel`: Defines different levels of notifications.
7//! - `verifypath`: Provides path verification utilities.
8//! - 'unraidnotifiererror': Provides error handling.
9
10pub mod notificationlevel;
11pub mod notifier;
12pub mod unraidnotifiererror;
13pub mod verifypath;