(c *fiber.Ctx)
| 26 | } |
| 27 | |
| 28 | func home_timeline(c *fiber.Ctx) error { |
| 29 | return convert_timeline(c, "", true, blueskyapi.GetTimeline) |
| 30 | } |
| 31 | |
| 32 | func hot_post_timeline(c *fiber.Ctx) error { |
| 33 | return convert_timeline(c, "", true, blueskyapi.GetHotPosts) |
nothing calls this directly
no test coverage detected