diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-15 03:06:10 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-15 03:07:45 +0100 |
commit | 432a816dde18a12c1479ed8151a11c29929476e0 (patch) | |
tree | 89c965c63f07c1091ff34ec3d163171a73eba29f /bridge/gitlab/gitlab.go | |
parent | e9aff2a2a103b43852ecf7b57ae9ab297890eeed (diff) | |
parent | 362c0c7e2e1ce9a8e2918376a340c76f46569d64 (diff) | |
download | git-bug-432a816dde18a12c1479ed8151a11c29929476e0.tar.gz |
Merge remote-tracking branch 'origin/master' into cheshirekow-jira
Diffstat (limited to 'bridge/gitlab/gitlab.go')
-rw-r--r-- | bridge/gitlab/gitlab.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bridge/gitlab/gitlab.go b/bridge/gitlab/gitlab.go index 8512379c..ec7b7e57 100644 --- a/bridge/gitlab/gitlab.go +++ b/bridge/gitlab/gitlab.go @@ -19,8 +19,8 @@ const ( metaKeyGitlabProject = "gitlab-project-id" metaKeyGitlabBaseUrl = "gitlab-base-url" - keyProjectID = "project-id" - keyGitlabBaseUrl = "base-url" + confKeyProjectID = "project-id" + confKeyGitlabBaseUrl = "base-url" defaultBaseURL = "https://gitlab.com/" defaultTimeout = 60 * time.Second @@ -30,7 +30,7 @@ var _ core.BridgeImpl = &Gitlab{} type Gitlab struct{} -func (*Gitlab) Target() string { +func (Gitlab) Target() string { return target } @@ -38,11 +38,11 @@ func (g *Gitlab) LoginMetaKey() string { return metaKeyGitlabLogin } -func (*Gitlab) NewImporter() core.Importer { +func (Gitlab) NewImporter() core.Importer { return &gitlabImporter{} } -func (*Gitlab) NewExporter() core.Exporter { +func (Gitlab) NewExporter() core.Exporter { return &gitlabExporter{} } |