(ctx context.Context)
| 126 | } |
| 127 | |
| 128 | func (p *Pool) ListBranches(ctx context.Context) ([]branches.Config, error) { |
| 129 | return p.branches.All(ctx) |
| 130 | } |
| 131 | |
| 132 | func (p *Pool) LookupBranchByName(ctx context.Context, name string) (*branches.Config, error) { |
| 133 | return p.branches.LookupByName(ctx, name) |
no test coverage detected