about summary refs log tree commit diff stats
path: root/src/config/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/mod.rs')
-rw-r--r--src/config/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config/mod.rs b/src/config/mod.rs
index 26d27eb..3d0d0b5 100644
--- a/src/config/mod.rs
+++ b/src/config/mod.rs
@@ -10,7 +10,10 @@
 
 use std::path::PathBuf;
 
+use bytes::Bytes;
+
 mod default;
+mod definitions;
 pub mod file_system;
 
 pub struct Config {
@@ -24,7 +27,7 @@ pub struct UpdateConfig {
     pub max_backlog: u32,
 }
 pub struct DownloadConfig {
-    pub max_cache_size: u64,
+    pub max_cache_size: Bytes,
 }
 pub struct SelectConfig {
     pub playback_speed: f64,