1 2 3 4 5 6 7
package routes import "github.com/gofiber/fiber/v2" func NewsGet(c *fiber.Ctx) error { return c.SendString("news get") }