internal/context/errors.go (
8
lines of code) (
raw
):
package context import "fmt" type MissingContextErr struct { CtxKey *contextKey } func (e *MissingContextErr) Error() string { return fmt.Sprintf("missing context: %s", e.CtxKey) }