Golang is really not the best choice when it comes to developing desktop apps, but it is still possible. One example of viable use case for Golang desktop app would be to quickly add graphical interface for existing CLI app. And Fyne is great framework for that purpose. As stated on their official GitHub page,Continue reading “Fyne (Golang) desktop app with goroutines”
Category Archives: GoLang tips
Go modules and private GIT repositories
Some time ago i stumbled upon an issue that was giving me a headache. I had to download and import private Go module, and as it turns out, that can be little tricky. I’m using SSH keys for authenticating with my repositories, so this solution is applied only for that type of authentication.Of course, iContinue reading “Go modules and private GIT repositories”