We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e8cc91d + f74f668 commit 2a25928Copy full SHA for 2a25928
build/rust/build.rs
@@ -11,7 +11,8 @@ fn main() -> Result<()> {
11
"action.proto",
12
"transfer.proto",
13
"ping.proto",
14
- "action_execute.proto"
+ "action_execute.proto",
15
+ "event.proto"
16
];
17
18
let inclusions = &[
proto/aquila/event.proto
@@ -0,0 +1,13 @@
1
+syntax = "proto3";
2
+
3
+option ruby_package = "Tucana::Aquila";
4
5
+package aquila;
6
7
+// Event that gets admitted by an action
8
+message Event {
9
+ // Id of Event type
10
+ string event_type = 1;
+ // Payload (JSON) of event params
+ string payload = 2;
+}
0 commit comments