blob: bfd51cb4187a9573aaa91027a66d707b56db6b8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package bridge
import (
"github.com/MichaelMure/git-bug/bridge/core"
_ "github.com/MichaelMure/git-bug/bridge/github"
"github.com/MichaelMure/git-bug/repository"
)
// Targets return all known bridge implementation target
func Targets() []string {
return core.Targets()
}
func ConfiguredBridges(repo repository.RepoCommon) ([]string, error) {
return core.ConfiguredBridges(repo)
}
|