Skip to content

Commit

Permalink
feat: added event message
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael-goetz committed Jan 3, 2025
1 parent e8cc91d commit 070100c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions proto/aquila/event.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
syntax = "proto3";

option ruby_package = "Tucana::Aquila";

package aquila;

// Event that gets admitted by an action
message Event {
// Id of Event type
int32 event_type = 1;
// Payload (JSON) of event params
string payload = 2;
}

0 comments on commit 070100c

Please sign in to comment.