rust_store 0.2.5

A quick and easy cache database for you to use!
Documentation
#![feature(proc_macro_hygiene, decl_macro)]

mod func;
mod https;
mod tests;
pub mod functions;

/// rustup override set nightly
/// do this so nightly can be used in the code
/// this code will only work with nightly

pub struct StateData {
    pub api_key: String,
    pub null: String,
    pub data_storage_location: String,
}


fn main() {
    StateData {
        api_key: "your_api_key".to_owned(),
        null: "null_nil_value_key:345n,234lj52".to_owned(),
        data_storage_location: "database/".to_owned(),
    }
        .start_database_online()
}
// cargo build --release --target x86_64-unknown-linux-gnu
// rustup override set nightly
// do this so nightly can be used in the code
// this code will only work with nightly