rust_store 0.2.5

A quick and easy cache database for you to use!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![feature(proc_macro_hygiene, decl_macro)]

extern crate core;

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

/// 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,
}