cqrs 2.0.1 cqrs: ^2.0.1 copied to clipboard
CQRS client with helper Command/Query classes for Dart
dart_cqrs #
Introduction #
Dart_cqrs is a simple CQRS client (with http) using helper Command/Query classes.
Code Samples #
Queries:
const result = _cqrs.get(SimpleQuery());
print result;
Commands:
const result = _cqrs.run(SimpleCommand());
if (result.wasSuccessful) {
print('Success!');
}
Installation #
Add this to your pubspec.yaml dependencies:
dart_cqrs: ^1.0.1