(ctx context.Context)
| 22 | } |
| 23 | |
| 24 | func (a *activityService) GetRecentActivity(ctx context.Context) ([]domain.RecentActivity, error) { |
| 25 | activity, err := a.repo.GetRecentActivity(ctx) |
| 26 | if err != nil { |
| 27 | return nil, err |
| 28 | } |
| 29 | |
| 30 | return activity, nil |
| 31 | } |
nothing calls this directly
no test coverage detected