8 lines
135 B
Go
8 lines
135 B
Go
|
package handler
|
||
|
|
||
|
import "github.com/gofiber/fiber/v2"
|
||
|
|
||
|
func Health(c *fiber.Ctx) error {
|
||
|
return c.SendStatus(fiber.StatusNoContent)
|
||
|
}
|