(ctx context.Context, dr domain.RecentActivity)
| 10 | type ActivityRepository interface { |
| 11 | GetRecentActivity(ctx context.Context) ([]domain.RecentActivity, error) |
| 12 | SetRecentActivity(ctx context.Context, dr domain.RecentActivity) error |
| 13 | } |
| 14 | |
| 15 | type activityRepository struct { |
no outgoing calls
no test coverage detected