Release v1.0.31
All checks were successful
Release Build / create-release (push) Successful in 6m27s
Release Build / create-docker-image (push) Successful in 3m32s
Release Build / update-to-release-branch (push) Successful in 8s

This commit is contained in:
2025-07-28 15:47:12 +06:00
parent bf643393ad
commit 7a33e815af
5 changed files with 22 additions and 12 deletions

View File

@@ -1,13 +1,14 @@
package main
import (
"log"
"net/http"
"os"
"github.com/gin-gonic/gin"
)
const version = "1.0.30"
const version = "1.0.31"
func main() {
// Set Gin mode
@@ -83,5 +84,8 @@ func main() {
}
// Start server
r.Run(":" + port)
err := r.Run(":" + port)
if err != nil {
log.Fatal(err)
}
}