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
+ 8
6
Compare changes
  • Side-by-side
  • Inline
  • a0fecc85
    Merge branch... · a0fecc85
    André Sterba authored
    Merge branch '226-implement-m2m-protocol-for-event-management-of-sbi-data-plane-communication' into istaester/init-application-framework
+ 8
6
@@ -9,14 +9,16 @@ type Event struct {
Type string `json:"type,omitempty"`
}
// TypeAdd is an add event.
const TypeAdd = "add"
const(
// TypeAdd is an add event.
TypeAdd = "add"
// TypeUpdate is an update event.
const TypeUpdate = "update"
// TypeUpdate is an update event.
TypeUpdate = "update"
// TypeDelete is a delete event.
const TypeDelete = "delete"
// TypeDelete is a delete event.
TypeDelete = "delete"
)
// NewAddEvent creates a new add event.
func NewAddEvent(entityID uuid.UUID) Event {
Loading