This repository has been archived on 2026-02-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
fadaway/src/ctx.rs
2023-05-27 18:32:20 +09:00

12 lines
145 B
Rust

pub mod config;
pub mod db;
pub mod user;
pub use config::Config;
pub use db::DB;
pub struct Ctx {
pub cfg: Config,
pub db: Box<dyn DB>,
}