Use proto3 again.

This commit is contained in:
Ryan Dahl 2018-05-25 15:30:09 -04:00
parent d765300de5
commit 5b858632ac
5 changed files with 56 additions and 58 deletions

10
main.go
View file

@ -60,12 +60,12 @@ func main() {
var command = Msg_START // TODO use proto3
PubMsg("start", &Msg{
Command: &command,
StartCwd: &cwd,
Command: command,
StartCwd: cwd,
StartArgv: args,
StartDebugFlag: flagDebug,
StartMainJs: &main_js,
StartMainMap: &main_map,
StartDebugFlag: *flagDebug,
StartMainJs: main_js,
StartMainMap: main_map,
})
DispatchLoop()