wspr_cdk 0.0.12

This crate provides an abstraction that allows you to do analysis on wspr's real time spot data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(non_snake_case)]

use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize)]
pub struct QueryManager {
    pub QUERY: String,
}

impl QueryManager {
    pub fn new(query: &String) -> Self {
        Self {
            QUERY: query.into(),
        }
    }
}