package notify import ( "github.com/gin-gonic/gin" "github.com/perfect-panel/server/internal/svc" "github.com/perfect-panel/server/pkg/result" ) func AppleIAPNotifyHandler(svcCtx *svc.ServiceContext) func(c *gin.Context) { return func(c *gin.Context) { result.HttpResult(c, map[string]bool{"success": true}, nil) } }