mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-16 11:00:42 +03:00
8 lines
85 B
Go
8 lines
85 B
Go
package bug
|
|
|
|
type Label string
|
|
|
|
func (l Label) String() string {
|
|
return string(l)
|
|
}
|