This repository has been archived on 2025-05-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
synchronizator-go/pkg/relationship.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
}