quoter/src/handlers/mod.rs
Untone 9fcce86075
Some checks failed
deploy / deploy (push) Failing after 4m4s
handlers-refactored
2024-10-22 00:36:42 +03:00

11 lines
273 B
Rust

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;