Implement basic caching.

This commit is contained in:
Paul Makles
2020-08-03 10:51:14 +02:00
parent 6f065b7575
commit b0f8abef33
5 changed files with 151 additions and 15 deletions

View File

@@ -6,12 +6,14 @@ extern crate rocket;
extern crate rocket_contrib;
#[macro_use]
extern crate bitfield;
#[macro_use]
extern crate lazy_static;
pub mod database;
pub mod email;
pub mod guards;
pub mod notifications;
pub mod database;
pub mod guards;
pub mod routes;
pub mod email;
pub mod util;
use dotenv;