go-pingbot/website/routes/index.go

12 lines
135 B
Go

package routes
import (
"net/http"
"github.com/gin-gonic/gin"
)
func Index(c *gin.Context) {
c.String(http.StatusOK, "Ready!")
}