Remove get link handler

This commit is contained in:
2024-05-07 19:15:17 +02:00
parent 4cf15542f3
commit e1982ba173
3 changed files with 1 additions and 158 deletions

View File

@@ -9,12 +9,6 @@ pub struct Config {
pub postgres_port: u32,
pub postgres_db: String,
pub minio_host: String,
pub internal_minio_host: String,
pub minio_bucket: String,
pub minio_access_key: String,
pub minio_secret_key: String,
pub downloader_api_key: String,
pub downloader_url: String,
@@ -45,12 +39,6 @@ impl Config {
postgres_port: get_env("POSTGRES_PORT").parse().unwrap(),
postgres_db: get_env("POSTGRES_DB"),
minio_host: get_env("MINIO_HOST"),
internal_minio_host: get_env("INTERNAL_MINIO_HOST"),
minio_bucket: get_env("MINIO_BUCKET"),
minio_access_key: get_env("MINIO_ACCESS_KEY"),
minio_secret_key: get_env("MINIO_SECRET_KEY"),
downloader_api_key: get_env("DOWNLOADER_API_KEY"),
downloader_url: get_env("DOWNLOADER_URL"),