mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-12 08:40:11 +00:00
10 lines
180 B
Rust
10 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,
|
|
}
|