Difference between revisions of "Go structure"
Jump to navigation
Jump to search
(Created page with "``` project/ │ ├── cmd/ │ └── your_app/ │ └── main.go │ ├── internal/ │ ├── models/ │ │ ├── user.go │ │...") |
(No difference)
|
Revision as of 23:43, 13 April 2024
project/ │ ├── cmd/ │ └── your_app/ │ └── main.go │ ├── internal/ │ ├── models/ │ │ ├── user.go │ │ └── post.go │ │ └── ... │ │ │ ├── handlers/ │ │ ├── user_handler.go │ │ └── post_handler.go │ │ └── ... │ │ │ └── routes/ │ ├── user_routes.go │ └── post_routes.go │ └── ... │ └── go.mod