go-pingbot/website/routes/index.go

14 lines
170 B
Go

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