package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func GetPing(ctx *gin.Context) {
ctx.Status(http.StatusOK)
}