aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/github/github.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-21 12:54:48 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-21 12:54:48 +0200
commit1c86a66cbe0f4871dd40b8352c1f1b2de97e8442 (patch)
treece01ce3382b2d3d471c962530169193e3d4898e0 /bridge/github/github.go
parent7c63417e8f1b3556b524b6f5bd66d93e534381cd (diff)
downloadgit-bug-1c86a66cbe0f4871dd40b8352c1f1b2de97e8442.tar.gz
bridge: add the beginning of a github importer
Diffstat (limited to 'bridge/github/github.go')
-rw-r--r--bridge/github/github.go18
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")
+}