github.com/kubeshop/testkube@v1.17.23/pkg/server/endpoints.go (about)

     1  package server
     2  
     3  import "github.com/gofiber/fiber/v2"
     4  
     5  // HealthEndpoint for health checks
     6  func (s HTTPServer) HealthEndpoint() fiber.Handler {
     7  	return func(c *fiber.Ctx) error {
     8  		return c.SendString("OK 👋!")
     9  	}
    10  }