| 12 | ) |
| 13 | |
| 14 | type Repository struct { |
| 15 | info *github.Repository |
| 16 | client *github.Client |
| 17 | backoff *backoff.Backoff |
| 18 | paginationSize int |
| 19 | |
| 20 | CoreStats *types.RepoCoreStats |
| 21 | Webhooks map[types.WebhookID]types.Webhook |
| 22 | Workflows map[types.WorkflowID]types.Workflow |
| 23 | Collaborators map[types.UserLogin]types.User |
| 24 | } |
| 25 | |
| 26 | func NewRepository( |
| 27 | ctx context.Context, |
nothing calls this directly
no outgoing calls
no test coverage detected