aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/gitlab/gitlab.go
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-07-09 22:56:38 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-07-23 17:18:04 +0200
commit01c0f644b2b94589f4f597a90d6245d5e2c0ad17 (patch)
tree806e4c6d14ae1dd4e2fb750d34e613e8358a35c6 /bridge/gitlab/gitlab.go
parent15d12fb6c9d935e112a7c72fa94d661c51cbaae3 (diff)
downloadgit-bug-01c0f644b2b94589f4f597a90d6245d5e2c0ad17.tar.gz
bridge/gitlab: init new bridge
Diffstat (limited to 'bridge/gitlab/gitlab.go')
-rw-r--r--bridge/gitlab/gitlab.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/bridge/gitlab/gitlab.go b/bridge/gitlab/gitlab.go
new file mode 100644
index 00000000..538ae715
--- /dev/null
+++ b/bridge/gitlab/gitlab.go
@@ -0,0 +1,28 @@
+package gitlab
+
+import (
+ "github.com/MichaelMure/git-bug/bridge/core"
+ "github.com/xanzy/go-gitlab"
+)
+
+func init() {
+ core.Register(&Gitlab{})
+}
+
+type Gitlab struct{}
+
+func (*Gitlab) Target() string {
+ return target
+}
+
+func (*Gitlab) NewImporter() core.Importer {
+ return &gitlabImporter{}
+}
+
+func (*Gitlab) NewExporter() core.Exporter {
+ return &gitlabExporter{}
+}
+
+func buildClient(token string) *gitlab.Client {
+ return gitlab.NewClient(nil, token)
+}