(app *App)
| 60 | } |
| 61 | |
| 62 | func initLocalTimeline(app *App) { |
| 63 | app.timeline = &localTimeline{ |
| 64 | postsPerPage: tlPostsPerPage, |
| 65 | m: memo.New(app.FetchPublicPosts, tlCacheDur), |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | // satisfies memo.Func |
| 70 | func (app *App) FetchPublicPosts() (interface{}, error) { |
no outgoing calls
no test coverage detected