Update dependencies and implement email service integration

- Refactor app and email modules to include email service
- Add tests for user sign-up and mock email service
This commit is contained in:
Greg Burri 2025-05-02 00:57:32 +02:00
parent f31167dd95
commit 3626f8a11b
10 changed files with 291 additions and 151 deletions

View file

@ -2,9 +2,9 @@ pub mod app;
pub mod config;
pub mod consts;
pub mod data;
pub mod email;
pub mod log;
mod email;
mod hash;
mod html_templates;
mod ron_extractor;