quoter/src/handlers/mod.rs

11 lines
273 B
Rust
Raw Normal View History

2024-10-21 21:36:42 +00:00
mod upload;
mod proxy;
mod serve_file;
pub use upload::upload_handler;
pub use proxy::proxy_handler;
// pub use serve_file::serve_file;
// Лимит квоты на пользователя: 2 ГБ в неделю
pub const MAX_WEEK_BYTES: u64 = 2 * 1024 * 1024 * 1024;