aboutsummaryrefslogtreecommitdiffstats
path: root/modules/migration/label.go
blob: 1a04a1dd3a57b3be680ae02bcda0a50306f9c765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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 migration

// Label defines a standard label information
type Label struct {
	Name        string
	Color       string
	Description string
}