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