mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +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
|
||
|
}
|