PluralKit/crates/api/src/lib.rs

11 lines
180 B
Rust
Raw Normal View History

2025-12-23 00:45:45 -05:00
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,
}