Sébastien Pichon
Sébastien Pichon
Hi @diogoalbuquerque, I use the following. Please note that I switch to the pretty logger in case of debug level. Edit: I updated with a proper interface name ```go package...
You can do it by creating your own image derived from vernemq and override some directive ``` COPY commands.sh /scripts/commands.sh RUN ["chmod", "+x", "/scripts/commands.sh"] ENTRYPOINT ["/scripts/commands.sh"] ``` then you can...
You could create a "Deps" structure. Initialize it with a constructor and pass this structure to the router. ´´´ type Deps struct { UseCaseA *usecases.UseCaseA ... } ´´´