CQRS client with helper Command/Query classes for Dart
More...
cqrs is a simple CQRS client (with http) using helper Command/Query classes.
cqrs
Queries:
const result = await _cqrs.get(SimpleQuery()); print result;
Commands:
const result = await _cqrs.run(SimpleCommand()); if (result.wasSuccessful) { print('Success!'); }
leancode.co
Homepage
unknown (license)
http
Packages that depend on cqrs
Back