go-pingbot/website/routes/index.go
Medzik bd660f5427 v1.1.0: Change error msg, Changes 2 files name to ticker.go...
- Change error messages
- backend and update: changed files name to ticker.go
- Update README, Makefile
- Added nodemon
- website: URL type now is database.URL
- backend: Remove unused http info
- Upgrade deps
2021-07-19 14:24:33 +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,
})
}