2019-05-07 06:42:51 +05:30
|
|
|
// 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.
|
|
|
|
|
2021-11-16 20:55:33 +05:30
|
|
|
package migration
|
2019-05-07 06:42:51 +05:30
|
|
|
|
|
|
|
// Repository defines a standard repository information
|
|
|
|
type Repository struct {
|
2020-09-15 20:07:44 +05:30
|
|
|
Name string
|
|
|
|
Owner string
|
2020-12-27 09:04:19 +05:30
|
|
|
IsPrivate bool `yaml:"is_private"`
|
|
|
|
IsMirror bool `yaml:"is_mirror"`
|
2020-09-15 20:07:44 +05:30
|
|
|
Description string
|
2020-12-27 09:04:19 +05:30
|
|
|
CloneURL string `yaml:"clone_url"`
|
|
|
|
OriginalURL string `yaml:"original_url"`
|
2020-09-15 20:07:44 +05:30
|
|
|
DefaultBranch string
|
2019-05-07 06:42:51 +05:30
|
|
|
}
|