gitlab.com/evatix-go/core@v1.3.55/coredata/corejson/all-interfaces.go (about) 1 package corejson 2 3 type bytesSerializer interface { 4 Serialize() ([]byte, error) 5 } 6 7 type bytesDeserializer interface { 8 Deserialize(toPtr interface{}) error 9 }