Microservices in Go: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =Overview= | ||
=Project Layout= | =Project Layout= | ||
Each of the services <code>metadata</code>, <code>movie</code>, <code>rating</code> contains multiple packages. | |||
<font size=-2> | <font size=-2> | ||
. | . |
Revision as of 20:40, 26 September 2023
External
- Microservices with Go: Building scalable and reliable microservices with Go by Alexander Shuiskov
Internal
Overview
Project Layout
Each of the services metadata
, movie
, rating
contains multiple packages.
. ├── README.md ├── metadata │ └── cmd │ └── main.go ├── movie │ └── cmd │ └── main.go └── rating └── cmd └── main.go