Simple Rest API in Golang with JWT Authentication, Fiber Web Framework, PostgreSQL DB with GORM.
go mod init <repository_name>
go get github.com/gofiber/fiber/v2
go get gorm.io/gorm
go get gorm.io/driver/postgres
go get github.com/golang-jwt/jwt
go mod tidy
go run main.go