Graceful exits in GO
How to gracefully exit long running processes in GO
In this post I’m going to explain why we want graceful exists in programs, and how to implement them in GO.
Discussing all things around software engineering.
How to gracefully exit long running processes in GO
In this post I’m going to explain why we want graceful exists in programs, and how to implement them in GO.
How can interfaces make my code easier to maintain and extend?
Interfaces in go really allow you to think about the functionality of your code, rather than a specific implementation of that functionality.