diff options
Diffstat (limited to 'commands/bridge_configure.go')
-rw-r--r-- | commands/bridge_configure.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/commands/bridge_configure.go b/commands/bridge_configure.go index 564affcc..f6aa6bfd 100644 --- a/commands/bridge_configure.go +++ b/commands/bridge_configure.go @@ -7,7 +7,6 @@ import ( "strings" "github.com/MichaelMure/git-bug/bridge" - "github.com/MichaelMure/git-bug/bridge/core" "github.com/MichaelMure/git-bug/cache" "github.com/spf13/cobra" ) @@ -29,7 +28,7 @@ func runBridgeConfigure(cmd *cobra.Command, args []string) error { return err } - b, err := core.NewBridge(backend, target, name) + b, err := bridge.NewBridge(backend, target, name) if err != nil { return err } |