forked from jmug/stoatchat
11 lines
183 B
Rust
11 lines
183 B
Rust
use crate::Database;
|
|
use rocket::State;
|
|
|
|
pub mod cors;
|
|
pub mod idempotency;
|
|
pub mod ratelimiter;
|
|
pub mod swagger;
|
|
|
|
pub use rocket_empty::EmptyResponse;
|
|
pub type Db = State<Database>;
|