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