Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 634 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 634 Bytes

gin-blueprint

golang web api blueprint based gin-gonic, viper, sqlx, glide

Go Report Card

Structure

.
├── api 
│   ├── api.go // app main
│   ├── context.go // gin handler
│   └── model
│       └── model.go // database
├── conf
│   └── config.go // global configurations, injectable dependency objects
├── glide.yaml // package manage configurations
├── main.go 
└── tests
    └── api_test.go