func init()

in pkg/init.go [5:19]


func init() {
	golden.MetaAttributeNames.Add("rule_ids")
	golden.RegisterBaseBlock(func() golden.BlockType {
		return new(BaseRule)
	})
	golden.RegisterBaseBlock(func() golden.BlockType {
		return new(BaseData)
	})
	golden.RegisterBaseBlock(func() golden.BlockType {
		return new(BaseFix)
	})
	registerRule()
	registerFix()
	registerData()
}