Release v1.0.28
All checks were successful
Release Build / create-release (push) Successful in 6m40s
Release Build / create-docker-image (push) Successful in 3m28s
Release Build / update-to-release-branch (push) Successful in 7s

This commit is contained in:
2025-07-28 12:42:44 +06:00
parent dd3de165f7
commit c4a3ea4d98
6 changed files with 345 additions and 244 deletions

View File

@@ -7,7 +7,7 @@ import (
"github.com/gin-gonic/gin"
)
const version = "1.0.27"
const version = "1.0.28"
func main() {
// Set Gin mode
@@ -31,7 +31,7 @@ func main() {
})
// Health check endpoint
r.GET("/health", func(c *gin.Context) {
r.GET("/healthz", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"status": "ok",
"version": version,