mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
13 lines
234 B
Protocol Buffer
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;
|
|
}
|
|
} |