From 3232885571708252259a45f7342499899f05a9aa Mon Sep 17 00:00:00 2001 From: Antoine GIRARD Date: Wed, 14 Aug 2019 08:16:12 +0200 Subject: [PATCH] Import topics during migration (#7851) * add GetTopics interface * CreateTopics * remove un-needed comment --- doc/advanced/migrations.en-us.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/advanced/migrations.en-us.md b/doc/advanced/migrations.en-us.md index 7db9cad8..2511f7af 100644 --- a/doc/advanced/migrations.en-us.md +++ b/doc/advanced/migrations.en-us.md @@ -34,6 +34,7 @@ create a Downloader. ```Go type Downloader interface { GetRepoInfo() (*Repository, error) + GetTopics() ([]string, error) GetMilestones() ([]*Milestone, error) GetReleases() ([]*Release, error) GetLabels() ([]*Label, error)