Files
phishingclub/backend/controller/health.go
2025-08-21 16:14:09 +02:00

16 lines
226 B
Go

package controller
import (
"net/http"
"github.com/gin-gonic/gin"
)
// Health is the Health controller
type Health struct{}
// Health returns a 200 OK
func (c *Health) Health(g *gin.Context) {
g.Status(http.StatusOK)
}