go-pingbot/website/routes/index.go
Medzik 689e833dbb feat: add ctx to backend ping, add cluster functional...
- Added ctx to backend ping
- Log changed Stderr to Stdout
- Added cluster functional
- Updated more files
2021-07-31 20:59:43 +00:00

14 lines
153 B
Go

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