generated from alecodes/base-template
14 lines
253 B
Go
14 lines
253 B
Go
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
|
|
}
|