migrated backend structure to Axum API setup, added core modules (models, services, api), integrated dotenv for configuration management, and added project roadmap for future phases

This commit is contained in:
2025-08-05 08:02:07 +02:00
parent bc1735448a
commit 37ebf45d82
15 changed files with 187 additions and 0 deletions

3
backend-rust/src/api.rs Normal file
View File

@@ -0,0 +1,3 @@
mod handlers;
mod middleware;
mod routes;

View File

View File

View File

View File

View File

@@ -0,0 +1,3 @@
mod article;
mod summary;
mod user;

View File

View File

View File

View File

@@ -0,0 +1,2 @@
mod summary_service;
mod news_service;