1 2 3 4 5 6 7 8 9 10 11 12
mod models; pub use models::price_alert::PriceAlert; #[derive(thiserror::Error, Debug)] pub enum Error {} #[derive(Debug, Clone, PartialEq)] pub enum AlertSet { High(f64), Low(f64), }