refactor: split modules

This commit is contained in:
2025-04-08 02:12:06 +08:00
parent 376d2b28d3
commit 2686fa1d76
94 changed files with 1125 additions and 580 deletions

View File

@@ -5,19 +5,18 @@
impl_trait_in_bindings,
iterator_try_collect,
async_fn_traits,
let_chains,
error_generic_member_access
error_generic_member_access,
associated_type_defaults,
let_chains
)]
#![feature(associated_type_defaults)]
pub use downloader;
pub mod app;
pub mod auth;
pub mod cache;
pub mod database;
pub mod downloader;
pub mod errors;
pub mod extract;
pub mod fetch;
pub mod graphql;
pub mod logger;
pub mod migrations;
@@ -26,5 +25,4 @@ pub mod storage;
pub mod tasks;
#[cfg(test)]
pub mod test_utils;
pub mod utils;
pub mod web;