From 1f365b236900d429cbfdaa1807163a110e6e4624 Mon Sep 17 00:00:00 2001 From: Amine Hilaly Date: Tue, 25 Jun 2019 01:33:48 +0200 Subject: [core] Implement ExportResults Use ExportResult chan to send export events Remove exportedBugs and exportedLabels --- bridge/core/interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bridge/core/interfaces.go') 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 } -- cgit