From 061e83d4b4aa66c2691b3699a3e770b2a58d26df Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 24 Sep 2018 16:24:38 +0200 Subject: commands: add "bridge rm" --- bridge/bridges.go | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'bridge/bridges.go') diff --git a/bridge/bridges.go b/bridge/bridges.go index bfd51cb4..2fcb13d3 100644 --- a/bridge/bridges.go +++ b/bridge/bridges.go @@ -3,6 +3,7 @@ package bridge import ( "github.com/MichaelMure/git-bug/bridge/core" _ "github.com/MichaelMure/git-bug/bridge/github" + "github.com/MichaelMure/git-bug/cache" "github.com/MichaelMure/git-bug/repository" ) @@ -11,6 +12,14 @@ func Targets() []string { return core.Targets() } +func NewBridge(repo *cache.RepoCache, target string, name string) (*core.Bridge, error) { + return core.NewBridge(repo, target, name) +} + func ConfiguredBridges(repo repository.RepoCommon) ([]string, error) { return core.ConfiguredBridges(repo) } + +func RemoveBridges(repo repository.RepoCommon, fullName string) error { + return core.RemoveBridge(repo, fullName) +} -- cgit