Dependency

Go

How to Use Dependency Injection in Go

Dependency injection in Go looks different from what you might expect coming from Java or C#. There’s no framework magic, no annotations, and no runtime reflection required. Go’s simplicity actually…

Read more →
Go

Go Modules: Dependency Management

Go modules are the official dependency management system introduced in Go 1.11 and enabled by default since Go 1.13. They solved critical problems that plagued earlier Go development: the rigid…

Read more →