mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
9 lines
177 B
Go
9 lines
177 B
Go
package bug
|
|
|
|
// Snapshot is a compiled form of the Bug data structure used for storage and merge
|
|
type Snapshot struct {
|
|
Title string
|
|
Comments []Comment
|
|
Labels []Label
|
|
}
|