diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-08 23:14:59 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-06-24 21:20:45 +0200 |
commit | fbb0e836d3d23e5a3e47029c92426090e21615f7 (patch) | |
tree | 8671b23efa14401ac32b8afd38cf630412ec7dba /bridge/github/github.go | |
parent | 0424a0fa19cbd2d2110d748a0ff3c014615aa17e (diff) | |
download | git-bug-fbb0e836d3d23e5a3e47029c92426090e21615f7.tar.gz |
[bridge/github] Add exporter implementation
Diffstat (limited to 'bridge/github/github.go')
-rw-r--r-- | bridge/github/github.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/github/github.go b/bridge/github/github.go index 3e717ee9..46004dc8 100644 --- a/bridge/github/github.go +++ b/bridge/github/github.go @@ -25,7 +25,7 @@ func (*Github) NewImporter() core.Importer { } func (*Github) NewExporter() core.Exporter { - return nil + return &githubExporter{} } func buildClient(token string) *githubv4.Client { |