generated from alecodes/base-template
wip: implementing db initialization
This commit is contained in:
parent
ffd3c2014e
commit
d4857c48cf
10 changed files with 383 additions and 0 deletions
9
pkg/node.go
Normal file
9
pkg/node.go
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
package synchronizator
|
||||
|
||||
type Node struct {
|
||||
_id int64
|
||||
_class string
|
||||
_relationships []*Relationship
|
||||
name string
|
||||
metadata any
|
||||
}
|
||||
Reference in a new issue