Microservices in Go: Difference between revisions

From NovaOrdis Knowledge Base
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

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