(ctx context.Context, followeeID int64, pagination domain.Pagination)
| 9 | type RelationService interface { |
| 10 | ListFollowerRelations(ctx context.Context, followerID int64, pagination domain.Pagination) ([]domain.Relation, error) |
| 11 | ListFolloweeRelations(ctx context.Context, followeeID int64, pagination domain.Pagination) ([]domain.Relation, error) |
| 12 | FollowUser(ctx context.Context, followerID, followeeID int64) error |
| 13 | CancelFollowUser(ctx context.Context, followerID, followeeID int64) error |
| 14 | GetFolloweeCount(ctx context.Context, UserID int64) (int64, error) |
no outgoing calls
no test coverage detected