From 2143c48f68438af87394cd6e866524da6183693e Mon Sep 17 00:00:00 2001 From: Seijo Cecilia Date: Fri, 30 Aug 2024 22:45:19 +0800 Subject: [PATCH] feat: LaanaDataWrapper --- proto/laana.proto | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 proto/laana.proto diff --git a/proto/laana.proto b/proto/laana.proto new file mode 100644 index 0000000..237bf05 --- /dev/null +++ b/proto/laana.proto @@ -0,0 +1,13 @@ +syntax = 'proto3'; +package Laana; + +import 'proto/action/wrapper.proto'; +import 'proto/event/wrapper.proto'; + +message LannaDataWrapper { + oneof data { + ActionPing actionPing = 1; + ActionPong actionPong = 2; + EventWrapper event = 3; + } +} \ No newline at end of file