Files
quoter/src/handlers/mod.rs

12 lines
254 B
Rust
Raw Normal View History

mod common;
2024-10-22 00:36:42 +03:00
mod proxy;
mod serve_file;
2025-08-02 00:18:09 +03:00
mod upload;
2025-09-01 20:36:15 +03:00
mod user;
mod universal;
2024-10-22 00:36:42 +03:00
pub use universal::universal_handler;
2024-10-22 00:36:42 +03:00
// Общий лимит квоты на пользователя: 12 ГБ
pub const MAX_USER_QUOTA_BYTES: u64 = 12 * 1024 * 1024 * 1024;