mod proxy; mod quota; mod serve_file; mod upload; mod user; pub use proxy::proxy_handler; pub use quota::{get_quota_handler, increase_quota_handler, set_quota_handler}; pub use upload::upload_handler; pub use user::get_current_user_handler; // Общий лимит квоты на пользователя: 5 ГБ pub const MAX_USER_QUOTA_BYTES: u64 = 5 * 1024 * 1024 * 1024;