go-pingbot/website/routes/api/api.go

13 lines
167 B
Go
Raw Normal View History

2021-07-11 21:19:37 +00:00
package api
import (
"github.com/gin-gonic/gin"
)
func ApplyRoutes(r *gin.Engine) {
api := r.Group("/api")
2021-09-15 19:31:01 +00:00
api.GET("/url", GetAll)
api.GET("/status", Status)
2021-07-11 21:19:37 +00:00
}