wip: implementing db initialization

This commit is contained in:
Alexander Navarro 2024-11-13 19:55:02 +00:00
parent ffd3c2014e
commit d4857c48cf
Signed by untrusted user who does not match committer: anavarro
GPG key ID: 6426043E9FA3E3B5
10 changed files with 383 additions and 0 deletions

9
pkg/node.go Normal file
View file

@ -0,0 +1,9 @@
package synchronizator
type Node struct {
_id int64
_class string
_relationships []*Relationship
name string
metadata any
}