Skip to content
Snippets Groups Projects
Commit 68acd072 authored by Malte Bauch's avatar Malte Bauch
Browse files

fixed database linting errors

parent 13f6e7e4
No related branches found
No related tags found
2 merge requests!40Resolve "Job Failed #185196",!18Develop
Pipeline #52639 passed with warnings
...@@ -110,11 +110,14 @@ func (d Database) StorePND(pnd *PND) neo4j.Node { ...@@ -110,11 +110,14 @@ func (d Database) StorePND(pnd *PND) neo4j.Node {
//RemovePND removes the given principle network domain by id. //RemovePND removes the given principle network domain by id.
func (d Database) RemovePND(id string) {} func (d Database) RemovePND(id string) {}
//GetPNDByID gets a specific PND by the given ID.
func (d Database) GetPNDByID(id string) {} func (d Database) GetPNDByID(id string) {}
//GetNodesByLabel gets all nodes that belong to a specific label.
func (d Database) GetNodesByLabel(label string) {} func (d Database) GetNodesByLabel(label string) {}
func (d Database) GetDeviceByID(id string) {} //GetNodeByID gets a specific node by ID.
func (d Database) GetNodeByID(id string) {}
//storeNodesTxFunc transaction to store devices from a json. //storeNodesTxFunc transaction to store devices from a json.
//relates them to a specific pnd id. //relates them to a specific pnd id.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment