(t time.Time)
| 58 | } |
| 59 | |
| 60 | func getTime(t time.Time) stream.Time { |
| 61 | st, _ := time.Parse(stream.TimeLayout, t.Truncate(time.Second).Format(stream.TimeLayout)) |
| 62 | return stream.Time{Time: st} |
| 63 | } |
| 64 | |
| 65 | func newFlatFeedWithUserID(c *stream.Client, userID string) (*stream.FlatFeed, error) { |
| 66 | return c.FlatFeed("flat", userID) |
no outgoing calls
no test coverage detected