Skip to main content

flowsurface_data/chart/
comparison.rs

1use exchange::SerTicker;
2use serde::{Deserialize, Serialize};
3
4#[derive(Debug, Clone, Default, Serialize, Deserialize)]
5pub struct Config {
6    pub colors: Vec<(SerTicker, iced_core::Color)>,
7    pub names: Vec<(SerTicker, String)>,
8}