github.com/cloud-foundations/dominator@v0.0.0-20221004181915-6e4fee580046/proto/imageserver/gob.go (about) 1 package imageserver 2 3 import ( 4 "encoding/gob" 5 6 "github.com/Cloud-Foundations/Dominator/lib/filesystem" 7 ) 8 9 func init() { 10 gob.Register(&filesystem.RegularInode{}) 11 gob.Register(&filesystem.ComputedRegularInode{}) 12 gob.Register(&filesystem.SymlinkInode{}) 13 gob.Register(&filesystem.SpecialInode{}) 14 gob.Register(&filesystem.DirectoryInode{}) 15 }