7 lines
148 B
Go
7 lines
148 B
Go
package endpoints
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func (e *Endpoints) Index(ctx *fiber.Ctx) error {
|
|
return ctx.SendString("Hello world!")
|
|
}
|