mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-13 09:10:14 +00:00
11 lines
180 B
Rust
11 lines
180 B
Rust
|
|
mod auth;
|
||
|
|
pub mod error;
|
||
|
|
pub mod middleware;
|
||
|
|
pub mod util;
|
||
|
|
|
||
|
|
#[derive(Clone)]
|
||
|
|
pub struct ApiContext {
|
||
|
|
pub db: sqlx::postgres::PgPool,
|
||
|
|
pub redis: fred::clients::RedisPool,
|
||
|
|
}
|