14 lines
196 B
Go
14 lines
196 B
Go
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
type HealthController struct{}
|
||
|
|
||
|
func (h HealthController) Status(c *gin.Context) {
|
||
|
c.String(http.StatusOK, "Working!")
|
||
|
}
|