tracker-api-go/api/handlers/ping.go

12 lines
133 B
Go
Raw Normal View History

2022-12-22 00:33:47 +01:00
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func GetPing(ctx *gin.Context) {
ctx.Status(http.StatusOK)
}