shelfy-v2/internal/controllers/testController.go

16 lines
266 B
Go
Raw Normal View History

2025-07-27 14:26:30 +00:00
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
})
}}