Among the various fantastic and awesome features that the Go language provides, it also allows dynamic loading of code with Go Plugins. Go added this functionality in v1.8 and community has been super excited to see this welcome change. So why the need to build plugins? How do they work? In this blog, we’ll learn … Continue reading Plugins in Go
Category: package
Go project structure, building commands and packages
In the last blog, we saw how to create a simple Go script and run it to get the desired outcome. We also learnt about few useful editors and setup Visual Studio Code for working in Golang. Let’s take a step deeper and understand how to structure our Go project. We will also build a … Continue reading Go project structure, building commands and packages