Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 597 Bytes

README.md

File metadata and controls

15 lines (12 loc) · 597 Bytes

pkg/ - Go packages

This document details convention about pkg/ structure. Packages documentation is available using godoc -http=:6060.

pkg
├── embedded                      # Files embedded within Go binary.
├── event                         # Prisme events structure.
├── handlers                      # HTTP handlers.
├── middlewares                   # HTTP middlewares.
├── services                      # Reusable and swappable features hided behind interfaces.
└── wired                         # Wire providers of external dependency.