sfx 0.1.2

SFX is a streamlined, full-stack Rust framework for building small web services with integrated authentication, localization, and config-driven UI components
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub const CACHE_VALID_TIME: u64 = 60 * 60; // 1 hour  

pub const HALF_VALID_TIME: u64 = CACHE_VALID_TIME / 2; 

pub mod endpoints; 
pub mod fetch; 
pub mod user; 
pub mod middleware; 
pub mod server; 

pub use user::{User, UserID}; 
pub use middleware::UserFetch; 
pub use server::Server;