mirror of
https://github.com/denoland/deno.git
synced 2025-02-02 04:38:21 -05: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];
|
||
|
}
|
||
|
|