| 87 | } |
| 88 | |
| 89 | type Blog struct { |
| 90 | Posts []Post |
| 91 | Authors map[int]Author |
| 92 | TotalViews int |
| 93 | TotalPosts int |
| 94 | TotalLikes int |
| 95 | } |
| 96 | |
| 97 | func (b Blog) RecentPosts() []Post { |
| 98 | var posts []Post |
nothing calls this directly
no outgoing calls
no test coverage detected