package routes import ( "net/http" "github.com/gin-gonic/gin" ) func Index(c *gin.Context) { c.JSON(http.StatusOK, map[string]interface{}{ "success": true, }) }