Golang
How to pass multiple values into URL in GO? [SOLVED]
When building an HTTP server and client, we might need to pass multiple strings as parameters to an HTTP URL. In this tutorial, we will introduce some methods
How to use go get specific version in GO? [SOLVED]
In this tutorial, we will show you how to import a package on a specific version. Your code may occasionally require extra functions not available in your
How to set golang HTTP client timeout? [SOLVED]
In this tutorial, we will explain some methods to set timeout for HTTP requests. A Request Timeout header is defined for Hypertext Transfer Protocol (HTTP).
Subtract time.Duration from time in GO [SOLVED]
In Golang, we usually have to deal with time management, we do need to do some operations such as adding, and subtracting a duration from time. We will walk
Cannot find package even if GOPATH is set [SOLVED]
Sometimes you will encounter the "Cannot find package" error (even though GOPATH is set) when building a Golang module. In this article, we will explain why
