aboutsummaryrefslogblamecommitdiffstats
path: root/bug/operations/operations.go
blob: 0bfd3b8493ddff5372a389d3ba384e5c936a6459 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                 
                                          
                                            
 
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{})
	gob.Register(LabelChangeOperation{})
}