The majority of packages in this repository implement:
12 Factor App best practices
Ready-to-use integrations with infrastructure (logging, databases, observability, etc.)
Examples usually demonstrate two key layers of application assembly:
// main.go
// The executable entry point that runs inside a container.
// Minimal logic — just bootstrap and start.
// di.go
// Explicit construction of the full dependency graph.
// All services, repositories, clients and middleware are wired together in a single, readable place — making dependency flow transparent and refactor-friendly.