#2347·fiber

[Feature]: allow to automatically generate OpenAPI docs based on route details, without additional in-code comments

Author: loveyandexCreated Feb 27, 2023Updated Mar 27, 2026
Labels✏️ Feature

Feature Description

this swagger doc generation is so boring

Additional Context (optional)

No response

Code Snippet (optional)

go
package main

import "github.com/gofiber/fiber/v2"
import "log"

func main() {
  app := fiber.New()

  // An example to describe the feature

  log.Fatal(app.Listen(":3000"))
}

Checklist:

  • I agree to follow Fiber's Code of Conduct.
  • I have checked for existing issues that describe my suggestion prior to opening this one.
  • I understand that improperly formatted feature requests may be closed without explanation.