Skip to content

Instantly share code, notes, and snippets.

@fredgrott
Created February 21, 2025 16:14
Show Gist options
  • Save fredgrott/5f722ff19f096ed4cc54bb233eb5a11a to your computer and use it in GitHub Desktop.
Save fredgrott/5f722ff19f096ed4cc54bb233eb5a11a to your computer and use it in GitHub Desktop.
main demo cqrs
void main() async {
final cqrs = CQRS()
..registerAggregate(AccountAggregate())
..resigerRepository(InMemoryRepository<Account>(forAggregate: "account"));
cqrs.events.listen(debugPrint);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment