lato
lato copied to clipboard
Python microframework for modular monoliths and loosely coupled apps
As a follow-up to https://github.com/pgorecki/lato/issues/4 - I would kindly like to ask one more question, if I may. @pgorecki - would you see strongly-typed codebase would be a goal for...
https://github.com/pgorecki/lato/blob/18c2afa419f195a380db6f447a292bd3e00fb30a/tests/test_transaction_context.py#L8 after modifying `tests/test_transaction_context.py` from ``` def add(a, b): return a + b ``` to ``` def add(a: int, b: int) -> int: return a + b ``` test suite...
In the context of CQRS, a command should typically be handled by only one command handler per bounded context/module. However, it seems that this is not the case in the...
Shouldn't this be a dev dependency?