mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-02-12 16:12:44 +00:00
16 lines
226 B
Go
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)
|
|
}
|