Files
RenewCMS/internal/ping.go
T
2022-10-12 09:44:03 +02:00

12 lines
150 B
Go

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