feat: implement session-based authentication and core API handlers for user management

This commit is contained in:
2025-12-19 16:21:12 +05:30
parent b9fbbbbbd6
commit 4890cfb541
10 changed files with 1019 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
//! API Handlers module.
pub mod auth;
pub mod biomarkers;
pub mod categories;
pub mod diets;
pub mod entries;
pub mod users;