aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/bridges.go
blob: c542903c28e88902315fce2a1327f8e37119bf16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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{}),
	}
}