mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
13 lines
146 B
Protocol Buffer
13 lines
146 B
Protocol Buffer
syntax = "proto3";
|
|
package main;
|
|
|
|
|
|
message Msg {
|
|
enum MsgKind {
|
|
LOAD = 0;
|
|
}
|
|
MsgKind kind = 10;
|
|
|
|
// LOAD
|
|
repeated string argv = 11;
|
|
}
|