decoupled module system with exchange rates

This commit is contained in:
Priec
2026-09-07 18:27:43 +02:00
parent 2cf442a954
commit 44dc6cc572
10 changed files with 272 additions and 2 deletions

12
generic_rust_todo.txt Normal file
View File

@@ -0,0 +1,12 @@
1. - Your Rust module can define a column type XX, which you can add through the table definition.
- When a row is saved, the framework calls the registered modules row hooks.
- You implement your modules hook and choose whether its logic runs for every table, only tables containing XX, or
another condition.
- If you want it to affect only the XX column, your hook selects and processes that columns value from the supplied
row.
- The framework doesnt automatically make those choices. You implement the filtering and column-specific behavior;
modules without a row-hook implementation default to doing nothing.
2.