Skip to content

n-vr/httptoolkit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Toolkit

Go Report Card

This is a toolkit to reduce boilerplate code for common HTTP related things I need to do in go.

Subpackages

github.com/n-vr/httptoolkit/handler

Go Reference

Package handler implements an HTTP handler that can return an error, while staying 100% compatible with the standard library's net/http package.

github.com/n-vr/httptoolkit/problem

Go Reference

Package problem implements RFC 9457 errors that can be returned from a handler.

github.com/n-vr/httptoolkit/server

Go Reference

Package server implements a simple HTTP server that features graceful shutdown.