Extract some functions to the app module: preparation for integration tests.

This commit is contained in:
Greg Burri 2025-04-29 17:51:46 +02:00
parent 898f2e1160
commit 7f94159852
14 changed files with 605 additions and 521 deletions

14
backend/src/lib.rs Normal file
View file

@ -0,0 +1,14 @@
pub mod app;
pub mod config;
pub mod consts;
pub mod data;
pub mod log;
mod email;
mod hash;
mod html_templates;
mod ron_extractor;
mod ron_utils;
mod services;
mod translation;
mod utils;