Initial commit

This commit is contained in:
2025-03-20 22:23:25 -03:00
parent d4a696a5fb
commit bc675abb58
8 changed files with 241 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package handlers
import (
"net/http"
"github.com/gin-gonic/gin"
)
// PingHandler responds with a JSON message "pong".
func PingHandler(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{"message": "pong"})
}