1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/src/msg.fbs

13 lines
134 B
Text
Raw Normal View History

2018-07-04 14:50:28 -04:00
namespace deno;
enum Command: byte {
START = 0,
}
table Msg {
command: Command;
start_cwd: string;
start_argv: [string];
}