mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
11 lines
246 B
Go
11 lines
246 B
Go
package operations
|
|
|
|
import "encoding/gob"
|
|
|
|
// Package initialisation used to register operation's type for (de)serialization
|
|
func init() {
|
|
gob.Register(AddCommentOperation{})
|
|
gob.Register(CreateOperation{})
|
|
gob.Register(SetTitleOperation{})
|
|
}
|