This is a Go module of some of the packages that I use in almost every one of my Go projects, so instead of copying them
over from project to project, I decided to just put them up here so that I can reference them directly. That way, any
changes I need to make, I can just make it in one place.
Packages
The included packages are:
errutils - A package to provide some utilities when dealing with errors.
logger - A standard logger that uses zerolog under the hood, but
provides an interface that is a bit more ergonomic.
signals - A standard way to capture shutdown signals, so that you can gracefully shut your application
down.
Echo v4 packages (v3 is also supported by removing v4 from the path)
echo/v4/health - A basic health check endpoint for Echo servers.