repositorypackage
0.0.0-20221112164939-f06d06ada4ba
Repository: https://github.com/andoco/go-app.git
Documentation: pkg.go.dev
# Packages
No description provided by the author
# README
Introduction
Minimal Go framework for microservice applications running in AWS supporting:
- Multiple HTTP endpoints on different ports
- AWS SQS message processing
- Prometheus metrics endpoint
- Semantic logging using zerolog
Build & Test
Build:
go build ./...
Test:
go test
Coverage:
go test -coverprofile=coverage.out; go tool cover -func=coverage.out
Getting Started
See cmd/demo/main.go for an example app.