Files
2026-02-06 21:08:15 +03:00

12 lines
152 B
Go

package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Ping(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"status": "success"})
}