chore: Formatting

This commit is contained in:
2024-12-12 16:33:23 +01:00
parent 69f4de6739
commit c5da33f10f
5 changed files with 41 additions and 41 deletions

View File

@@ -5,13 +5,13 @@ import (
)
// GenerateBarcode godoc
// @Summary Generate barcodes
// @Description Generate barcodes based on the provided data
// @Tags barcodes
// @Param type path string true "Barcode type" Enums(ean13, code128)
// @Param content path string true "Barcode content" MinLength(1)
// @Produce image/png
// @Router /v1/barcodes/{type}/{content} [get]
// @Summary Generate barcodes
// @Description Generate barcodes based on the provided data
// @Tags barcodes
// @Param type path string true "Barcode type" Enums(ean13, code128)
// @Param content path string true "Barcode content" MinLength(1)
// @Produce image/png
// @Router /v1/barcodes/{type}/{content} [get]
func (h *DefaultHandler) GenerateBarcode(c *fiber.Ctx) error {
c.Set(fiber.HeaderContentType, "text/plain")
return c.Send([]byte("Hello, World!"))