#![allow(non_snake_case)]
use super::prelude::WsprSpot;
#[derive(Debug)]
pub struct ClickHouseState {
pub DATA: Option<Vec<WsprSpot>>,
pub STATUS: String,
}
impl ClickHouseState {
pub fn new() -> Self {
Self {
DATA: Some(Vec::new()),
STATUS: "Initialized".to_string(),
}
}
}
impl Default for ClickHouseState {
fn default() -> Self {
Self::new()
}
}