refactor: extract view-model mappers from presentation handlers
Some checks failed
CI / Check / Test (push) Has been cancelled

Move mapping logic (domain→DTO/template structs) into mappers/ module.
Handlers now call mapper fns instead of inline conversions.
This commit is contained in:
2026-06-02 20:43:33 +02:00
parent b9210b6c4e
commit 62fd6682c6
10 changed files with 189 additions and 146 deletions

View File

@@ -4,6 +4,7 @@ pub mod extractors;
pub mod factory;
pub mod forms;
pub mod handlers;
pub mod mappers;
pub mod openapi;
pub mod ports;
pub mod render;