[update] added new services (scraping, tagging, analytics, sharing) and models (tag, analytics, settings), modularized into Rust backend structure

This commit is contained in:
2025-08-06 13:20:04 +02:00
parent c2adfa711d
commit e7a97206a9
9 changed files with 7 additions and 0 deletions

View File

@@ -1,3 +1,6 @@
mod article;
mod summary;
mod user;
mod tag;
mod analytics;
mod settings;

View File

View File

View File

View File

@@ -1,2 +1,6 @@
mod summary_service;
mod news_service;
mod scraping_service;
mod tagging_service;
mod analytics_service;
mod sharing_service;