├── .gitignore ├── README.md ├── config └── config.go ├── database ├── database.go └── schema.go ├── go-rest-api-with-fiber ├── go.mod ├── go.sum ├── handler └── handler.go ├── main.go ├── middleware └── middleware.go ├── model └── product.go ├── router └── route.go └── sample.env /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # go-rest-api-with-fiber 2 | -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/config/config.go -------------------------------------------------------------------------------- /database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/database/database.go -------------------------------------------------------------------------------- /database/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/database/schema.go -------------------------------------------------------------------------------- /go-rest-api-with-fiber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/go-rest-api-with-fiber -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/go.sum -------------------------------------------------------------------------------- /handler/handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/handler/handler.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/main.go -------------------------------------------------------------------------------- /middleware/middleware.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/middleware/middleware.go -------------------------------------------------------------------------------- /model/product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/model/product.go -------------------------------------------------------------------------------- /router/route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/router/route.go -------------------------------------------------------------------------------- /sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebase007/go-rest-api-with-fiber/HEAD/sample.env --------------------------------------------------------------------------------