feat: tipos HTTP — Middleware, Route, HTTPError
Tres tipos Go en el paquete infra para construir servidores HTTP: - Middleware: funcion que envuelve http.Handler (patron decorator) - Route: struct con Method, Path y Handler para registrar rutas - HTTPError: struct con Status, Code y Message para respuestas JSON de error Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package infra
|
||||
|
||||
// HTTPError representa un error HTTP estructurado para respuestas JSON.
|
||||
type HTTPError struct {
|
||||
Status int // codigo HTTP (ej: 400, 404, 500)
|
||||
Code string // codigo de error legible por maquina (ej: "invalid_input")
|
||||
Message string // mensaje de error legible por humano
|
||||
}
|
||||
Reference in New Issue
Block a user