diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-12 13:54:04 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-12 13:54:04 +0200 |
commit | e99bde7a00a161ff5dd91eaf1ce546a9d98cef05 (patch) | |
tree | 454c2de6fae85720064b35593158e612b2d9fefb /common/src/lib.rs | |
parent | 356b3b8eebf22083c7d9655bb43e141dd0df732c (diff) | |
download | jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar.bz2 jellything-e99bde7a00a161ff5dd91eaf1ce546a9d98cef05.tar.zst |
move stream types to own crate; removes a common dep
Diffstat (limited to 'common/src/lib.rs')
-rw-r--r-- | common/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs index 14c82fc..903d519 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -10,8 +10,8 @@ pub mod helpers; pub mod r#impl; pub mod jhls; pub mod routes; -pub mod stream; pub mod user; +pub use jellystream_types as stream; pub use chrono; |