(svc service.RelationService)
| 24 | } |
| 25 | |
| 26 | func NewRelationHandler(svc service.RelationService) *RelationHandler { |
| 27 | return &RelationHandler{ |
| 28 | svc: svc, |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | // ListFollowerRelations 获取关注信息列表 |
| 33 | func (r *RelationHandler) ListFollowerRelations(ctx *gin.Context, req req.ListFollowerRelationsReq) (Result, error) { |