Change dataconverter interface

This commit is contained in:
mcrakhman 2023-01-24 17:04:38 +01:00
parent 7174e0e081
commit ed615379c4
No known key found for this signature in database
GPG Key ID: DED12CFEF5B8396B

View File

@ -8,7 +8,7 @@ import (
type DataConverter interface {
Unmarshall(decrypted []byte) (any, error)
Convert(model any) (any, error)
Marshall(model any) ([]byte, error)
}
type TreeExporterParams struct {