2019-05-06 19:12:51 -06:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package base
|
|
|
|
|
2019-06-29 07:38:22 -06:00
|
|
|
// Uploader uploads all the informations of one repository
|
2019-05-06 19:12:51 -06:00
|
|
|
type Uploader interface {
|
2019-07-06 13:24:50 -06:00
|
|
|
MaxBatchInsertSize(tp string) int
|
2019-07-01 15:17:16 -06:00
|
|
|
CreateRepo(repo *Repository, opts MigrateOptions) error
|
2019-06-29 07:38:22 -06:00
|
|
|
CreateMilestones(milestones ...*Milestone) error
|
|
|
|
CreateReleases(releases ...*Release) error
|
|
|
|
CreateLabels(labels ...*Label) error
|
|
|
|
CreateIssues(issues ...*Issue) error
|
|
|
|
CreateComments(comments ...*Comment) error
|
|
|
|
CreatePullRequests(prs ...*PullRequest) error
|
2019-05-06 19:12:51 -06:00
|
|
|
Rollback() error
|
|
|
|
}
|