10 lines
155 B
Go
10 lines
155 B
Go
package handler
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func GetHealth(c *fiber.Ctx) error {
|
|
return c.Status(200).JSON(&fiber.Map{
|
|
"status": "ok",
|
|
})
|
|
}
|