rframe 0.1.1

A lightweight framework implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use crate::error::{Error, Result};

#[cfg(any(feature = "mysql", feature = "postgres", feature = "sqlite"))]
pub use crate::db::*;

#[cfg(any(
    feature = "cache-local",
    feature = "cache-redis",
    feature = "cache-multilevel"
))]
pub use crate::cache::*;