Microservices in Go: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 8: Line 8:
=Overview=
=Overview=
=Project Layout=
=Project Layout=
Each of the services <code>metadata</code>, <code>movie</code>, <code>rating</code> contains multiple packages. The entire application is developed as a module.
Each of the services <code>metadata</code>, <code>movie</code>, <code>rating</code> contains multiple packages. The entire application is developed as a [[Go_Modules#Overview|module]].
<font size=-2>
<font size=-2>
  .
  .

Revision as of 20:49, 26 September 2023

External

Internal

Overview

Project Layout

Each of the services metadata, movie, rating contains multiple packages. The entire application is developed as a module.

.
├── README.md
├── metadata
│   └── cmd
│       └── main.go
├── movie
│   └── cmd
│       └── main.go
└── rating
    └── cmd
        └── main.go