1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-24 11:04:42 -05:00
sub2clash/api/route.go

20 lines
268 B
Go
Raw Normal View History

2023-09-12 06:40:24 -04:00
package api
import (
"github.com/gin-gonic/gin"
"sub/api/controller"
)
func SetRoute(r *gin.Engine) {
r.GET(
"/clash", func(c *gin.Context) {
controller.SubmodHandler(c)
},
)
r.GET(
"/meta", func(c *gin.Context) {
controller.SubHandler(c)
},
)
}