2025-09-11 07:27:57 +00:00
|
|
|
#![allow(unused_imports)]
|
2025-09-12 04:23:09 +00:00
|
|
|
#![allow(dead_code)]
|
2025-09-11 07:27:57 +00:00
|
|
|
pub use std::collections::{ HashMap, HashSet };
|
|
|
|
|
|
|
|
|
|
pub use serde_json::{ Value, Map };
|
|
|
|
|
|
|
|
|
|
pub use log::{ warn as w, log as l, info as i, error as e, trace as t, debug as d };
|
|
|
|
|
pub use anyhow::{ anyhow, bail };
|
|
|
|
|
|
|
|
|
|
pub use reactive_stores::Store;
|
|
|
|
|
|
|
|
|
|
pub use crate::{
|
|
|
|
|
utils,
|
|
|
|
|
entities::{ ItemReferenceMap, Item, Dashboard },
|
|
|
|
|
statics::*,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
pub type Error = anyhow::Error;
|
|
|
|
|
pub type Result <T> = anyhow::Result<T>;
|
|
|
|
|
pub type Context = Store<Dashboard>;
|