mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 14:08:30 -05:00
15 lines
283 B
Go
15 lines
283 B
Go
|
|
package vip
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"go-common/app/interface/main/account/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
// ManagerInfo manager info.
|
||
|
|
func (s *Service) ManagerInfo(c context.Context) (res *model.ManagerResp, err error) {
|
||
|
|
res = new(model.ManagerResp)
|
||
|
|
res.JointlyInfo, err = s.vipRPC.Jointly(c)
|
||
|
|
return
|
||
|
|
}
|