Jun 6, 2021 go tips Make Your Code Leaner By Extracting Methods In this article, we’ll see an example of method extraction. We’ll make our code less repetitive, cleaner, and easier to follow.
Jun 6, 2021 go tips Here’s a Technique to Ensure Environment Variables Are Set Before Starting a Microservice How do you make sure that your microservice does not start if any of the environment variables it depends on is missing? And how do you do this with the least amount of maintenance overhead. In this article, we’ll cover it.