26 lines
551 B
Go
26 lines
551 B
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.10.1
|
|
|
|
package vip
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"sundynix-micro-go/app/radio/api/internal/logic/vip"
|
|
"sundynix-micro-go/app/radio/api/internal/svc"
|
|
"sundynix-micro-go/common/response"
|
|
)
|
|
|
|
// 我的VIP信息
|
|
func GetMyVipInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
l := vip.NewGetMyVipInfoLogic(r.Context(), svcCtx)
|
|
err := l.GetMyVipInfo()
|
|
if err != nil {
|
|
response.Fail(w, err.Error())
|
|
} else {
|
|
response.Ok(w)
|
|
}
|
|
}
|
|
}
|