jokes-bapak2/api/app/v1/handler/health.go

8 lines
135 B
Go
Raw Normal View History

2021-07-09 12:13:19 +00:00
package handler
import "github.com/gofiber/fiber/v2"
func Health(c *fiber.Ctx) error {
return c.SendStatus(fiber.StatusNoContent)
}