diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-24 16:24:38 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-24 16:24:38 +0200 |
commit | 061e83d4b4aa66c2691b3699a3e770b2a58d26df (patch) | |
tree | ab82b815a91054fc498dbd7564cc61322b5fd338 /bridge/bridges.go | |
parent | 43bda202fa347e6893671b05376c0e4fcb9196f4 (diff) | |
download | git-bug-061e83d4b4aa66c2691b3699a3e770b2a58d26df.tar.gz |
commands: add "bridge rm"
Diffstat (limited to 'bridge/bridges.go')
-rw-r--r-- | bridge/bridges.go | 9 |
1 files changed, 9 insertions, 0 deletions
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) +} |