Ali Sunjaya

Results 8 comments of Ali Sunjaya

https://github.com/go-kit/kit/tree/master/examples/shipping also good reference. I like how they compose an existing service into something called instrumenting service for metrics or something. Good job everyone :)

Better to add test, an example from my issue should enough, then let the maintainer decide. :+1:

So what is the solution ? Everybody just referenced it all the way

SQS (Simple Queue Service), not query.

I actually made my own implementation and using it on my production. The signature like below: ```go //main.go //build subscriber subscriber := sqstransport.NewSubscriber(endpoint, dec, enc, opts...) for { out, _...

https://github.com/samber/lo/pull/395 Hi all, I created a PR similar to this feature with more flexibility of the arguments

What about wrapping the `*slog.Logger.` method? Something like.. ```go type logFunc func(msg string, keysAndValues ...interface{}) func (l logFunc) Log(keyvals ...interface{}) error { l("", keyvals...) return nil } type config struct...