Microservices in Go: Difference between revisions
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
* [[Go_Code_Examples|Go Code Examples]] | * [[Go_Code_Examples|Go Code Examples]] | ||
* [[Microservices]] | * [[Microservices]] | ||
* [[API Concepts]] | |||
=Overview= | =Overview= | ||
=Project Layout= | =Project Layout= |
Revision as of 20:41, 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