AIM: CRUD OPERATION
============================================================================================================================================ Project inisialization
- Create a folder
- Open vscode.
- Go to that path from terminal and create the project inside that folder by typing: go mod init projectname
- For gin installation, type "go get github.com/gin-gonic/gin"
- For gorm installation, type "go get -u gorm.io/gorm"
- For mysql driver, type "go get -u gorm.io/driver/mysql" ============================================================================================================================================