Skip to main content

Posts

Showing posts from October 5, 2018

GO-API PROJECT STRUCTURE

GOAPI Tutorial In this post, We will create repository structure for our GOLANG APIs project. We have directory structure like below for this project. We will follow this structure for this project.    ├├── goapi │   ├── api-frontend │   ├── db │   │   ├── db.sql │   │   └── model.sql │   ├── docs │   ├── README.md │   └── server │   ├── bin │   │   └── main │   ├── Makefile │   └── src │   └── test.com │   └── goapi │   └── app │   ├── apis │   │   └── student.go │   ├── cmd │   │   └── main │   │   └── main.go │   ├── db │   ...