mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-26 07:13:36 +01:00
10 lines
155 B
Go
10 lines
155 B
Go
package api
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func StartBlocking(router *gin.RouterGroup) {
|
|
router.GET("/blocking", func(context *gin.Context) {
|
|
|
|
})
|
|
}
|