13 lines
209 B
Go
13 lines
209 B
Go
package vistas
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Health(c *gin.Context) {
|
|
resultado := "OK!"
|
|
c.Data(http.StatusOK, "text/html; charset=utf-8", []byte(resultado))
|
|
}
|