From 070100c325b6e4e2a76a978c8bf538cb014735fe Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 3 Jan 2025 10:40:20 +0100 Subject: [PATCH] feat: added event message --- proto/aquila/event.proto | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 proto/aquila/event.proto diff --git a/proto/aquila/event.proto b/proto/aquila/event.proto new file mode 100644 index 0000000..3c5ad60 --- /dev/null +++ b/proto/aquila/event.proto @@ -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; +} \ No newline at end of file