Files
noscomptes-back/handler/handler.go
2023-10-03 00:40:01 +02:00

19 lines
300 B
Go
Executable File

package handler
import (
"github.com/gin-gonic/gin"
"net/http"
"nos-comptes/internal/utils"
)
type Config struct {
DBConnectionURI string
Port int
LogLevel string
LogFormat string
}
func GetHealth(c *gin.Context) {
utils.JSON(c.Writer, http.StatusNoContent, nil)
}