TAG

Golang

How to set default values in GO structs? [SOLVED]

There are multiple ways to set default values in go struct. We have explored some of the possible ways such as using an init function, using a separate …

By tuannguyen · 3 min read · GOLANG Solutions

Building a CRUD REST API using Redis DB in GO

Go or Golang is an open source programming language developed and supported by Google. It is mostly used to build backend applications where it interacts with

By antonyshikubu · 10 min read · GO

Building a CRUD REST API using Postgresql DB in GO

CRUD is a common abbreviation when it comes to getting started with any framework or programming language. CRUD basically stands for Create, Read, Update and

By antonyshikubu · 9 min read · GO

Building a CRUD gRPC API using Postgresql DB in GO

CRUD is an acronym that refers to operations that are considered necessary to implement in a persistent storage application: Create, Read, Update and Delete.

By antonyshikubu · 15 min read · GO