aboutsummaryrefslogtreecommitdiffstats
path: root/bug/operations/operations.go
blob: f42d6e9a0f03dba944861a68d40d219297e21443 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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{})
}