diff options
Diffstat (limited to 'bridge/github/github.go')
-rw-r--r-- | bridge/github/github.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/bridge/github/github.go b/bridge/github/github.go new file mode 100644 index 00000000..d905ec7d --- /dev/null +++ b/bridge/github/github.go @@ -0,0 +1,18 @@ +package github + +import "github.com/MichaelMure/git-bug/cache" + +type github struct { +} + +func (*github) Configure() error { + panic("implement me") +} + +func (*github) ImportAll(repo *cache.RepoCache) error { + panic("implement me") +} + +func (*github) Import(repo *cache.RepoCache, id string) error { + panic("implement me") +} |