mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
8 lines
71 B
Go
8 lines
71 B
Go
package bug
|
|
|
|
type Bug struct {
|
|
Title string
|
|
Comments []Comment
|
|
}
|
|
|