quant_suite/
lib.rs

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