Skip to content
Snippets Groups Projects

Add basic application framework and example application to show interaction between events an NBI

Merged Ghost User requested to merge istaester/init-application-framework into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -45,7 +45,7 @@ func (t *MemoryPndStore) Delete(item networkdomain.NetworkDomain) error {
func (t *MemoryPndStore) Get(query store.Query) (networkdomain.NetworkDomain, error) {
item, ok := t.Store[query.ID]
if !ok {
return nil, nil
return nil, &nerrors.ErrNotFound{ID: query.ID}
}
return item, nil
Loading