diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-15 13:17:58 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-15 13:17:58 +0100 |
commit | a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f (patch) | |
tree | ad0cfc71fa1b1a558773686dc93e92f5b546088b /common/src/lib.rs | |
parent | a5ad49451e80cae7ec7f5d2a216084aa30e2e704 (diff) | |
download | jellything-a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f.tar jellything-a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f.tar.bz2 jellything-a0fd6f2943d69d2f3e13fcf80fb567bb821eef9f.tar.zst |
cleanup some old code
Diffstat (limited to 'common/src/lib.rs')
-rw-r--r-- | common/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/src/lib.rs b/common/src/lib.rs index 1903529..c126e65 100644 --- a/common/src/lib.rs +++ b/common/src/lib.rs @@ -11,10 +11,11 @@ pub mod seek_index; pub mod stream; pub mod user; -use bincode::{Decode, Encode}; pub use chrono; +use bincode::{Decode, Encode}; use chrono::{DateTime, Utc}; + #[cfg(feature = "rocket")] use rocket::{FromFormField, UriDisplayQuery}; use serde::{Deserialize, Serialize}; |