git-bug/bug/operations/operations.go
2018-07-14 22:17:37 +02:00

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{})
}