AggregatedFeed returns a new Aggregated Feed with the provided slug and userID.
(slug, userID string)
| 139 | // AggregatedFeed returns a new Aggregated Feed with the provided slug and |
| 140 | // userID. |
| 141 | func (c *Client) AggregatedFeed(slug, userID string) (*AggregatedFeed, error) { |
| 142 | feed, err := newFeed(slug, userID, c) |
| 143 | if err != nil { |
| 144 | return nil, err |
| 145 | } |
| 146 | return &AggregatedFeed{*feed}, nil |
| 147 | } |
| 148 | |
| 149 | // NotificationFeed returns a new Notification Feed with the provided slug and |
| 150 | // userID. |