@@ -0,0 +1,30 @@
|
||||
package notice
|
||||
|
||||
import (
|
||||
"honoka-chan/internal/middleware"
|
||||
"honoka-chan/internal/router"
|
||||
"honoka-chan/internal/schema/notice"
|
||||
"honoka-chan/internal/session"
|
||||
"time"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func friendVariety(ctx *gin.Context) {
|
||||
ss := session.Get(ctx)
|
||||
defer ss.Finalize()
|
||||
|
||||
ss.Respond(notice.FriendVarietyResp{
|
||||
ResponseData: notice.FriendVarietyData{
|
||||
ItemCount: 1,
|
||||
NoticeList: []any{},
|
||||
ServerTimestamp: time.Now().Unix(),
|
||||
},
|
||||
ReleaseInfo: []any{},
|
||||
StatusCode: 200,
|
||||
})
|
||||
}
|
||||
|
||||
func init() {
|
||||
router.AddHandler("main.php", "POST", "/notice/noticeFriendVariety", middleware.Common, friendVariety)
|
||||
}
|
||||
Reference in New Issue
Block a user