package synchronizator type RelationshipClass interface { ToRelationship() (string, []byte, error) FromRelationship(string, []byte) error } type Relationship struct { _conn *DB _class string From int64 To int64 Metadata []byte }