Márk Sági-Kazár
Márk Sági-Kazár
There can be some cases when one part of the transition should be a wildcard, so that the state can change TO ANY or can change FROM ANY. Example: Customer...
Thanks for this example, it's really great. I would like to comment one thing though, namely the section about [Dependency Injection](https://github.com/CaptainCodeman/clean-go#dependency-injection). You state that dependency injection is not always necessary,...
The above tools yield much nicer notifications/alerts in my opinion and as far as I can tell, they also allow using non-bundled icons: - https://github.com/julienXX/terminal-notifier - https://github.com/vjeantet/alerter
Given the following messages and enumeration: ``` message NameCheckResponse { Result result = 1; } message MultiNameCheckResponse { map results = 1; } enum Result { AVAILABLE = 0; UNAVAILABLE...
As in the title
Haven't checked the code yet, but I saw in the documentation that the logrus middleware awaits a `logrus.Entry`. Wouldn't it be better to rely on the `logrus.FieldLogger` interface?
Would be nice to have a curated list of third-party libraries written for Watermill. For example I was looking for a Zap adapter for the logger and found this after...
I think it would be nice to have a quick way to construct publishers/subscribers, similarly to https://gocloud.dev/concepts/urls/ That would allow configuring Watermill with DSNs like nats:// or amqp:// from config...
[CloudEvents](https://cloudevents.io/) is a specification for sending events in the cloud native environment. They also provide SDKs. It might be a good addition to the project to support CloudEvents. Although it's...
As always: suggestions for better names are welcome.