GOLANG Solutions
Using golang constants in struct [SOLVED]
In general, golang does not allow declaring a constant struct and constant within a struct. But we can use a custom function to perform this purpose
go.mod file not found in current directory or any parent directory — Why It
There are 2 different ways to solve go.mod file not found. By creating go.mod file using go mod init command or by setting go env -w GO111MODULE
Golang channel with multiple receivers [SOLVED]
Reading from a single channel shared with multiple goroutines is concurrency in action. Concurrency in Go is the ability for a goroutine(s)(function) to run
Copy files and preserve permission in Golang [SOLVED]
How to copy files and preserve permission in golang.
Golang Concat Slices - Remove Duplicates [SOLVED]
In this article we learn about different methods which can be used to golang concat slices and remove duplicates
