summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/config.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/config.rs b/src/config.rs
index 7e67214..0d266bf 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -2,14 +2,6 @@ pub use config::ConfigError;
use lazy_static::lazy_static;
use serde::Deserialize;
-// pub static PAGE_LIMIT: i64 = std::env::var("PAGE_LIMIT")
-// .unwrap_or_else(|_| "20".to_string())
-// .parse::<i64>()
-// .unwrap();
-// pub const MAX_UPLOAD_FILE_SIZE: u64 = 1024 * 1024; // 1 MB
-// pub const SAVE_FILE_BASE_PATH: &str = &std::env::var("SAVE_FILE_BASE_PATH").unwrap();
-// pub const UPLOADS_ENDPOINT: &str = &std::env::var("UPLOADS_ENDPOINT").unwrap();
-
#[derive(Deserialize)]
pub struct Configuration {
pub page_limit: i64,