mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
13 lines
134 B
Text
13 lines
134 B
Text
|
namespace deno;
|
||
|
|
||
|
enum Command: byte {
|
||
|
START = 0,
|
||
|
}
|
||
|
|
||
|
table Msg {
|
||
|
command: Command;
|
||
|
start_cwd: string;
|
||
|
start_argv: [string];
|
||
|
}
|
||
|
|