Files
honoka-chan/internal/handler/unit/favoriteaccessory.go
T
2026-07-11 16:18:17 +08:00

35 lines
693 B
Go

package unit
import (
"fmt"
"honoka-chan/internal/middleware"
"honoka-chan/internal/router"
"honoka-chan/internal/session"
"net/http"
"github.com/gin-gonic/gin"
)
type SetResp struct {
ResponseData []any `json:"response_data"`
ReleaseInfo []any `json:"release_info"`
StatusCode int `json:"status_code"`
}
func favoriteAccessory(ctx *gin.Context) {
ss := session.Get(ctx)
defer ss.Finalize()
fmt.Println(ctx.MustGet("request_data").(string))
ss.Respond(SetResp{
ResponseData: []any{},
ReleaseInfo: []any{},
StatusCode: http.StatusOK,
})
}
func init() {
router.AddHandler("main.php", "POST", "/unit/favoriteAccessory", middleware.Common, favoriteAccessory)
}