2024-09-02 15:21:52 +08:00

13 lines
234 B
Protocol Buffer

syntax = 'proto3';
package Laana;
import 'action/wrapper.proto';
import 'event/wrapper.proto';
message LannaDataWrapper {
oneof data {
ActionPing actionPing = 1;
ActionPong actionPong = 2;
EventWrapper event = 3;
}
}