implemented foundational API routes (/articles, /summaries) using Axum, added graceful shutdown handling, improved database initialization with connection pooling and directory creation, and integrated tracing for logging

This commit is contained in:
2025-08-05 08:59:01 +02:00
parent 79e4d7f1de
commit a30f8467bc
9 changed files with 326 additions and 38 deletions

View File

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