11 lines
273 B
Rust
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;
|