aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/github/github.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-15 13:54:51 +0100
committerMichael Muré <batolettre@gmail.com>2020-02-15 13:54:51 +0100
commitcfa005889a7d398ee71eac4a6d4b23a691a7ef2a (patch)
tree15d115fa77e61194b39ff0e7745778de8924070f /bridge/github/github.go
parent432a816dde18a12c1479ed8151a11c29929476e0 (diff)
parent02548c0e8f96a5c08efe46bd5f71f97fdd211de3 (diff)
downloadgit-bug-cfa005889a7d398ee71eac4a6d4b23a691a7ef2a.tar.gz
Merge remote-tracking branch 'origin/master' into cheshirekow-jira
Diffstat (limited to 'bridge/github/github.go')
-rw-r--r--bridge/github/github.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/bridge/github/github.go b/bridge/github/github.go
index a02d9460..3a99cec7 100644
--- a/bridge/github/github.go
+++ b/bridge/github/github.go
@@ -30,7 +30,7 @@ var _ core.BridgeImpl = &Github{}
type Github struct{}
-func (Github) Target() string {
+func (*Github) Target() string {
return target
}
@@ -38,11 +38,11 @@ func (g *Github) LoginMetaKey() string {
return metaKeyGithubLogin
}
-func (Github) NewImporter() core.Importer {
+func (*Github) NewImporter() core.Importer {
return &githubImporter{}
}
-func (Github) NewExporter() core.Exporter {
+func (*Github) NewExporter() core.Exporter {
return &githubExporter{}
}