Recently I created a simple Golang automatic “retrier” that will do automatic retry on our desired struct method with configurable maximum attempt. adityarama1210/retrier
Simple, ready to use, suitable for writing / saving something in the background, fire and forget (Haven’t been developed…github.com Summarizing the automatic retrier flow there are several things that we need to implement: We need to create a struct that implements the “retriable” interface, which consist of…