aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/core/interfaces.go
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-06-25 01:33:48 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-06-30 15:42:45 +0200
commit1f365b236900d429cbfdaa1807163a110e6e4624 (patch)
tree4b38730093c7f617202f9e8727c851e2f0e86206 /bridge/core/interfaces.go
parent570ae5f75e034523a1d7d94a04febe944d36399b (diff)
downloadgit-bug-1f365b236900d429cbfdaa1807163a110e6e4624.tar.gz
[core] Implement ExportResults
Use ExportResult chan to send export events Remove exportedBugs and exportedLabels
Diffstat (limited to 'bridge/core/interfaces.go')
-rw-r--r--bridge/core/interfaces.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bridge/core/interfaces.go b/bridge/core/interfaces.go
index 37fdb3d7..5cc7006a 100644
--- a/bridge/core/interfaces.go
+++ b/bridge/core/interfaces.go
@@ -34,5 +34,5 @@ type Importer interface {
type Exporter interface {
Init(conf Configuration) error
- ExportAll(repo *cache.RepoCache, since time.Time) error
+ ExportAll(repo *cache.RepoCache, since time.Time) <-chan ExportResult
}