mirror of
https://github.com/OMGeeky/gdriver2.git
synced 2026-02-15 22:14:31 +01:00
12 lines
354 B
Rust
12 lines
354 B
Rust
pub use crate::config::Configuration;
|
|
pub use crate::config::CONFIGURATION;
|
|
pub use crate::drive_structure::drive_id::{DriveId, ROOT_ID};
|
|
pub use crate::ipc;
|
|
pub mod result {
|
|
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error>>;
|
|
|
|
pub use std::result::Result as StdResult;
|
|
}
|
|
pub(crate) use result::*;
|
|
pub(crate) use tracing::*;
|