Working with GORM ORM with Go and Gin Server
GORM is a popular ORM used with golang to communicate with SQL database. In this article, we will look at how we can setup GORM in our go server using gin framework.
Create New Go App
Lets start by creating a new go app.
mkdir <go-app>
cd <go-app>
go...
mtarkar.hashnode.dev3 min read