diff options
author | Michael Muré <batolettre@gmail.com> | 2020-02-15 13:45:14 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2020-02-15 13:45:14 +0100 |
commit | 87b97ca4b2f39240c698596ac14a6d3532f6363d (patch) | |
tree | bb537e52035aa1d60d0405f7177b510e96aff1a6 /bridge/github/github.go | |
parent | fe3d5c95e4be5874066402b5463ada34894c7f01 (diff) | |
download | git-bug-87b97ca4b2f39240c698596ac14a6d3532f6363d.tar.gz |
bridges: more refactor and cleanup
Diffstat (limited to 'bridge/github/github.go')
-rw-r--r-- | bridge/github/github.go | 6 |
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{} } |