This commit is contained in:
OMGeeky
2024-02-17 18:07:43 +01:00
parent 6d3640ce78
commit ed1f60d5d2
2 changed files with 1 additions and 1 deletions

View File

@@ -1,7 +1,6 @@
use std::collections::HashMap;
use chrono::{DateTime, Utc};
use gdriver_common::{drive_structure::drive_id::DriveId, prelude::CONFIGURATION};
use crate::prelude::*;

View File

@@ -1,2 +1,3 @@
pub(crate) type Result<T> = StdResult<T, Box<dyn Error>>;
pub(crate) use gdriver_common::drive_structure::drive_id::{DriveId, ROOT_ID};
pub(crate) use std::{error::Error, result::Result as StdResult};