Go structure
Jump to navigation
Jump to search
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