router.go 182 B

12345678
  1. package index
  2. import "github.com/gin-gonic/gin"
  3. // InitRouter registers all the index related routes
  4. func InitRouter(r *gin.RouterGroup) {
  5. r.GET("index/status", GetIndexStatus)
  6. }