Instantiate a new Bridge for a repo, from the given target and name
(repo *cache.RepoCache, target string, name string)
| 32 | |
| 33 | // Instantiate a new Bridge for a repo, from the given target and name |
| 34 | func NewBridge(repo *cache.RepoCache, target string, name string) (*core.Bridge, error) { |
| 35 | return core.NewBridge(repo, target, name) |
| 36 | } |
| 37 | |
| 38 | // LoadBridge instantiate a new bridge from a repo configuration |
| 39 | func LoadBridge(repo *cache.RepoCache, name string) (*core.Bridge, error) { |
no test coverage detected