Add queue db path to config.cr

This commit is contained in:
Alex Ling 2020-02-26 17:29:34 +00:00
parent bb00c2e77f
commit 905d02e911

View File

@ -24,7 +24,9 @@ class Config
property mangadex = {
"base_url" => "https://mangadex.org",
"api_url" => "https://mangadex.org/api",
"download_wait_seconds" => 5
"download_wait_seconds" => 5,
"download_queue_db_path" => File.expand_path "~/mango/queue.db",
home: true
}
def self.load(path : String?)