aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/bridges.go
diff options
context:
space:
mode:
Diffstat (limited to 'bridge/bridges.go')
-rw-r--r--bridge/bridges.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/bridge/bridges.go b/bridge/bridges.go
new file mode 100644
index 00000000..c542903c
--- /dev/null
+++ b/bridge/bridges.go
@@ -0,0 +1,13 @@
+package bridge
+
+import (
+ "github.com/MichaelMure/git-bug/bridge/core"
+ "github.com/MichaelMure/git-bug/bridge/github"
+)
+
+// Bridges return all known bridges
+func Bridges() []*core.Bridge {
+ return []*core.Bridge{
+ core.NewBridge(&github.Github{}),
+ }
+}