diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-07-24 17:18:07 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-07-24 17:18:07 +0200 |
commit | 19d3c02396ac1c00742e50e60a0a840fbfade1ac (patch) | |
tree | 31ada80cf14a889b34ba5bdc075ab76e0a2cf17d /crates/yt/src/storage/db/get/mod.rs | |
parent | chore(treewide): Add missing license headers (diff) | |
download | yt-19d3c02396ac1c00742e50e60a0a840fbfade1ac.zip |
style(treewide): Format
Diffstat (limited to 'crates/yt/src/storage/db/get/mod.rs')
-rw-r--r-- | crates/yt/src/storage/db/get/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/yt/src/storage/db/get/mod.rs b/crates/yt/src/storage/db/get/mod.rs index dca16fc..4bcd066 100644 --- a/crates/yt/src/storage/db/get/mod.rs +++ b/crates/yt/src/storage/db/get/mod.rs @@ -8,8 +8,8 @@ // You should have received a copy of the License along with this program. // If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>. -pub(crate) mod subscription; -pub(crate) mod video; pub(crate) mod extractor_hash; pub(crate) mod playlist; +pub(crate) mod subscription; pub(crate) mod txn_log; +pub(crate) mod video; |