Files
huangguo_server/app/router/imgroup.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

17 lines
332 B
Go
Executable File

package router
import (
"91porn-server/app/api/imgroupctrl"
"github.com/gin-gonic/gin"
)
// imGroup 移动端接口
func imGroupRouter(router *gin.RouterGroup) {
group := router.Group("/imgroup")
{
group.GET("/list", imgroupctrl.List)
group.GET("/info", imgroupctrl.Info)
group.GET("/hasjoin", imgroupctrl.HasJoin)
}
}