aboutsummaryrefslogtreecommitdiff
path: root/base/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'base/src/lib.rs')
-rw-r--r--base/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/base/src/lib.rs b/base/src/lib.rs
index cfc5a11..a7b15c5 100644
--- a/base/src/lib.rs
+++ b/base/src/lib.rs
@@ -6,6 +6,7 @@
#![feature(lazy_cell)]
pub mod cache;
pub mod database;
+pub mod federation;
pub mod permission;
pub mod temp;
@@ -34,6 +35,7 @@ impl AssetLocationExt for AssetLocation {
AssetLocation::Cache(p) => CONF.cache_path.join(p),
AssetLocation::Library(p) => CONF.library_path.join(p),
AssetLocation::Temp(p) => CONF.temp_path.join(p),
+ AssetLocation::Media(p) => CONF.media_path.join(p),
}
}
}