本站源代码
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

21 lignes
724B

  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Copyright 2018 Jonas Franz. All rights reserved.
  3. // Use of this source code is governed by a MIT-style
  4. // license that can be found in the LICENSE file.
  5. package base
  6. // Uploader uploads all the informations of one repository
  7. type Uploader interface {
  8. MaxBatchInsertSize(tp string) int
  9. CreateRepo(repo *Repository, opts MigrateOptions) error
  10. CreateTopics(topic ...string) error
  11. CreateMilestones(milestones ...*Milestone) error
  12. CreateReleases(releases ...*Release) error
  13. CreateLabels(labels ...*Label) error
  14. CreateIssues(issues ...*Issue) error
  15. CreateComments(comments ...*Comment) error
  16. CreatePullRequests(prs ...*PullRequest) error
  17. Rollback() error
  18. }
上海开阖软件有限公司 沪ICP备12045867号-1