maf 0.1.0-alpha.6

MAF is an authoritative realtime framework for writing simple, secure, and scalable apps.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Abstraction for state shared between server and client.

mod pointers;
mod select;
mod store;

pub use pointers::{StoreMut, StoreRef};
pub(crate) use select::*;
pub(crate) use store::*;
pub use store::{Store, StoreData};