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

20 lines
326 B
Go

package router
import (
"91porn-server/app/api/infmtctrl"
"github.com/gin-gonic/gin"
)
func infmtRouter(router *gin.RouterGroup) {
inform := router.Group("/inform")
{
inform.GET("/preview", infmtctrl.Preview)
//通知类
notice := inform.Group("/notice")
{
notice.GET("/list", infmtctrl.NoticeList)
}
}
}