blob: 298adbef505fbeb2e68e66fd2f1e6e8984f6f403 [file] [log] [blame]
package api
import (
"github.com/gin-gonic/gin"
"github.com/merico-dev/lake/api/task"
)
func RegisterRouter(r *gin.Engine) {
r.POST("/task", task.Post)
}