TAG

Golang

Can functions be passed as parameters GO? [SOLVED]

In this tutorial, we will learn how to pass functions as a parameter to another function in Golang. Since Golang functions are first-order variables so it has

By tuannguyen · 3 min read · GO

Convert byte slice to io.Reader in Golang [SOLVED]

In this post, we'll examine how to translate a byte slice into an io.Reader in Golang. In Go, a byte slice is a dynamic array (slice) of bytes, which can

By tuannguyen · 3 min read · GO

How to import private Github Repos in GO? [SOLVED]

Creating libs and sharing them among applications is one strategy to shorten the time needed to develop a new project and make your team's work easier. Each

By tuannguyen · 4 min read · GOLANG Solutions