feat: endpoint /hermes/spec con documentación completa de la API

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Lizandro GD
2026-07-13 03:01:15 +00:00
co-authored by Claude Sonnet 5
parent 6ccdbd93c8
commit 13c3b4c16c
2 changed files with 503 additions and 0 deletions
+3
View File
@@ -9,6 +9,9 @@ import (
func HermesRoutes(app *fiber.App) {
h := app.Group("/hermes", middlewares.HermesAuth())
// ─── Spec (documentación completa de la API) ─────────────────────────────
h.Get("/spec", controllers.HermesSpec)
// ─── Usuarios ────────────────────────────────────────────────────────────
h.Get("/users", controllers.GetUsers)
h.Get("/users/:id", controllers.GetUser)