package routers import ( "server/modules/web/handler" "github.com/gin-gonic/gin" ) func telegram(e *gin.RouterGroup) { e.GET("/tg/luckyCode", handler.GetLuckyCode) }