shelfy-v2/internal/controllers/testController.go
2025-07-27 16:26:30 +02:00

16 lines
266 B
Go

package controllers
import (
"net/http"
"github.com/gin-gonic/gin"
)
func TestPing()gin.HandlerFunc {
return func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "pong",
"service": "shelfy",
"version": "1.0.0", // optionnel
})
}}