mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
14 lines
146 B
Protocol Buffer
14 lines
146 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
package main;
|
||
|
|
||
|
|
||
|
message Msg {
|
||
|
enum MsgKind {
|
||
|
LOAD = 0;
|
||
|
}
|
||
|
MsgKind kind = 10;
|
||
|
|
||
|
// LOAD
|
||
|
repeated string argv = 11;
|
||
|
}
|