Documentation ¶
Overview ¶
Package web contains a small web framework extension.
Index ¶
- func GetTime(ctx context.Context) time.Time
- func GetTraceID(ctx context.Context) string
- func IsShutdown(err error) bool
- func NewShutdownError(message string) error
- func Respond(ctx context.Context, w http.ResponseWriter, data any, statusCode int) error
- type App
- type Handler
- type MidHandler
- type Values
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetTraceID ¶
GetTraceID returns the trace id from the context.
func IsShutdown ¶
IsShutdown checks to see if the shutdown error is contained in the specified error value.
func NewShutdownError ¶
NewShutdownError returns an error that causes the framework to signal a graceful shutdown.
Types ¶
type App ¶
App is the entrypoint into our application and what configures our context object for each of our http handlers. Feel free to add any configuration data/logic on this App struct.
func NewApp ¶
func NewApp(shutdown chan os.Signal, mw ...MidHandler) *App
NewApp creates an App value that handle a set of routes for the application.
func (*App) HandleFunc ¶
func (a *App) HandleFunc(pattern string, handler Handler, mw ...MidHandler)
HandleFunc sets a handler function for a given HTTP method and path pair to the application server mid.
func (*App) HandleFuncNoMiddleware ¶
func (a *App) HandleFuncNoMiddleware(pattern string, handler Handler, mw ...MidHandler)
HandleFuncNoMiddleware sets a handler function for a given HTTP method and path pair to the application server mux with no middleware.
func (*App) SignalShutdown ¶
func (a *App) SignalShutdown()
SignalShutdown is used to gracefully shut down the app when an integrity issue is identified.
type Handler ¶
A Handler is a type that handles a http request within our own little mini framework.
type MidHandler ¶
MidHandler is a handler function designed to run code before and/or after another Handler. It is designed to remove boilerplate or other concerns not direct to any given app Handler.