18 lines
389 B
18 lines
389 B
package migrations
|
|
|
|
import "code.gitea.io/sdk/gitea"
|
|
|
|
type Migratory struct {
|
|
Client *gitea.Client
|
|
AuthUsername string
|
|
AuthPassword string
|
|
|
|
Private bool
|
|
NewOwnerID int
|
|
|
|
repository *gitea.Repository
|
|
// key: github milestone id | value: gitea milestone id
|
|
migratedMilestones map[int64]int64
|
|
// key: github label id | value: gitea label id
|
|
migratedLabels map[int64]int64
|
|
}
|
|
|