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
+ 3
3
Compare changes
  • Side-by-side
  • Inline
  • d4dd40bb
    Merge branch... · d4dd40bb
    André Sterba authored
    Merge branch '226-implement-m2m-protocol-for-event-management-of-sbi-data-plane-communication' into istaester/init-topology
+ 3
3
@@ -4,9 +4,9 @@ import "github.com/google/uuid"
@@ -4,9 +4,9 @@ import "github.com/google/uuid"
// Event is a event that can be published via the event service as payload.
// Event is a event that can be published via the event service as payload.
type Event struct {
type Event struct {
ID uuid.UUID
ID uuid.UUID `json:"id,omitempty"`
EntityID uuid.UUID
EntityID uuid.UUID `json:"entity_id,omitempty"`
Type string
Type string `json:"type,omitempty"`
}
}
// TypeAdd is an add event.
// TypeAdd is an add event.
Loading