1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! # gstore
//!
//! Global and local state management for GTK apps written in Rust.
//!
#[macro_use]
extern crate log;

mod state;
mod store;
pub(crate) mod utils;

pub use state::*;
pub use store::*;

// Reexports
pub use once_cell;
pub use serde_json;

pub const INIT: &str = "init";