2025-06-20 08:42:02 +09:00
|
|
|
use crate::{config::StorageConfig, error::Error, global::SimpleGlobal};
|
2025-06-20 07:28:51 +09:00
|
|
|
use tokio::sync::OnceCell;
|
2025-06-20 08:42:02 +09:00
|
|
|
use uuid::fmt::Simple;
|
2025-06-20 07:28:51 +09:00
|
|
|
|
2025-06-20 08:42:02 +09:00
|
|
|
pub static STORAGE_CONFIG: SimpleGlobal<StorageConfig> = SimpleGlobal::const_new();
|
2025-06-20 07:28:51 +09:00
|
|
|
|