.
├── LICENSE
├── README.md
├── api
│ └── README.md /* API Definitions */
├── assets
│ └── test.json /* Assests Like Image */
├── cmd
│ └── main.go /* Main Function */
| /* Entry Point Of The Project Don't user `src` folder */
├── doc
│ └── README.md /* Documentation Other Than Generated By Godoc */
├── examples
│ └── example.go /* Sample Code to Run */
├── go.mod
├── test
│ └── test.go /* Place your black box testing here */
└── web
└── base.html /* Go Html Templates here */