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 = _cqrs.get(SimpleQuery()); print result;
Commands:
const result = _cqrs.run(SimpleCommand()); if (result.wasSuccessful) { print('Success!'); }
leancode.co
Homepage
unknown (license)
http, meta
Packages that depend on cqrs
Back