-
- Downloads
approach of a basic implementation of the database
at this point it is possible to store nodes and interfaces in a neo4j database.
database/database.go
0 → 100644
... | ... | @@ -5,7 +5,7 @@ go 1.14 |
require ( | ||
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/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 | ||
github.com/go-openapi/runtime v0.19.22 | ||
github.com/go-openapi/strfmt v0.19.5 | ||
... | ... | @@ -13,6 +13,7 @@ require ( |
github.com/go-openapi/validate v0.19.11 // indirect | ||
github.com/jessevdk/go-flags v1.4.0 // indirect | ||
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/ygot v0.8.7 | ||
golang.org/x/net v0.0.0-20200904194848-62affa334b73 // indirect | ||
... | ... |
Please register or sign in to comment