summaryrefslogtreecommitdiffstats
path: root/src/config.rs
blob: 02ae63defb19d154c62111ab81681a23473b9d95 (plain)
1
2
3
4
5
6
// TODO: Everything here must be a std::env

pub static PAGE_LIMIT: i64 = 20;
pub const MAX_UPLOAD_FILE_SIZE: u64 = 1024 * 1024; // 1 MB
pub const SAVE_FILE_BASE_PATH: &str = "./uploads";
pub const UPLOADS_ENDPOINT: &str = "/uploads";