-
- Downloads
approach of a basic implementation of the database
at this point it is possible to store nodes and interfaces in a neo4j database.
parent
a3876dd3
No related branches found
No related tags found
This commit is part of merge request !24. Comments created here will be created in the context of that merge request.
database/database.go
0 → 100644
... | @@ -5,7 +5,7 @@ go 1.14 | ... | @@ -5,7 +5,7 @@ go 1.14 |
require ( | require ( | ||
code.fbi.h-da.de/cocsn/swagger/apis v0.0.0-20200924152423-61030cab7b88 | code.fbi.h-da.de/cocsn/swagger/apis v0.0.0-20200924152423-61030cab7b88 | ||
code.fbi.h-da.de/cocsn/swagger/apis/ciena v0.0.0-20200922140607-29b1f99d0f68 // indirect | code.fbi.h-da.de/cocsn/swagger/apis/ciena v0.0.0-20200922140607-29b1f99d0f68 // indirect | ||
code.fbi.h-da.de/cocsn/yang-modules/generated/ciena v0.0.0-20200922150332-3e03fcde3e37 | code.fbi.h-da.de/cocsn/yang-modules/generated/ciena v0.0.0-20200922150332-3e03fcde3e37 // indirect | ||
code.fbi.h-da.de/cocsn/yang-modules/generated/tapi v0.0.0-20200922150332-3e03fcde3e37 | code.fbi.h-da.de/cocsn/yang-modules/generated/tapi v0.0.0-20200922150332-3e03fcde3e37 | ||
github.com/go-openapi/runtime v0.19.22 | github.com/go-openapi/runtime v0.19.22 | ||
github.com/go-openapi/strfmt v0.19.5 | github.com/go-openapi/strfmt v0.19.5 | ||
... | @@ -13,6 +13,7 @@ require ( | ... | @@ -13,6 +13,7 @@ require ( |
github.com/go-openapi/validate v0.19.11 // indirect | github.com/go-openapi/validate v0.19.11 // indirect | ||
github.com/jessevdk/go-flags v1.4.0 // indirect | github.com/jessevdk/go-flags v1.4.0 // indirect | ||
github.com/mattn/go-sqlite3 v1.14.3 | github.com/mattn/go-sqlite3 v1.14.3 | ||
github.com/neo4j/neo4j-go-driver v1.8.3 | |||
github.com/openconfig/goyang v0.0.0-20200917201611-633eccb6fa97 // indirect | github.com/openconfig/goyang v0.0.0-20200917201611-633eccb6fa97 // indirect | ||
github.com/openconfig/ygot v0.8.7 | github.com/openconfig/ygot v0.8.7 | ||
golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect | golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect | ||
... | ... |
Please register or sign in to comment