GetFollowing returns the list of the feeds following the feed, applying the provided FollowingOptions, if any.
(ctx context.Context, opts ...FollowingOption)
| 107 | // GetFollowing returns the list of the feeds following the feed, applying the provided FollowingOptions, |
| 108 | // if any. |
| 109 | func (f *feed) GetFollowing(ctx context.Context, opts ...FollowingOption) (*FollowingResponse, error) { |
| 110 | return f.client.getFollowing(ctx, f, opts...) |
| 111 | } |
| 112 | |
| 113 | // Unfollow unfollows the provided feed, applying the provided UnfollowOptions, if any. |
| 114 | func (f *feed) Unfollow(ctx context.Context, target Feed, opts ...UnfollowOption) (*BaseResponse, error) { |
nothing calls this directly
no test coverage detected