diff options
author | Vika <vika@fireburn.ru> | 2022-05-10 00:42:01 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2022-05-10 00:42:01 +0300 |
commit | d95ae14555b421eb62f9ffaeb7c869c540961fa4 (patch) | |
tree | 59a9ba5911977620c62ebbfec7f6a6c791d0219a /src/lib.rs | |
parent | 974613c21479300284922e851447a51afb40057a (diff) | |
download | kittybox-d95ae14555b421eb62f9ffaeb7c869c540961fa4.tar.zst |
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.rs | 1 |
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; |