about summary refs log tree commit diff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2022-05-10 00:42:01 +0300
committerVika <vika@fireburn.ru>2022-05-10 00:42:01 +0300
commitd95ae14555b421eb62f9ffaeb7c869c540961fa4 (patch)
tree59a9ba5911977620c62ebbfec7f6a6c791d0219a /src/lib.rs
parent974613c21479300284922e851447a51afb40057a (diff)
media: move to separate subtree
This will ease future extraction of the media endpoint to a separate
crate. This is highly desirable since it will allow Kittybox's media
endpoint to be used separately in instances where a standalone media
endpoint is desirable (e.g. custom solutions using my code to polyfill
for desired functionality that is undesirable to implement by oneself)
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 9d4335a..1800b5b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -5,6 +5,7 @@ pub mod metrics;
 /// Database abstraction layer for Kittybox, allowing the CMS to work with any kind of database.
 pub mod database;
 pub mod micropub;
+pub mod media;
 pub mod indieauth;
 pub mod frontend;