From b3e76b0207bc4232b4b72626f8c4c802dcc63802 Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Fri, 18 May 2018 21:09:14 +0100 Subject: Server ported to go, 50%, just need to do the actual unicorn implementation. --- .vscode/launch.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 8795aee..a791e75 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,11 +4,17 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Go Server", + "type": "go", + "request": "launch", + "program": "${workspaceRoot}/Server.go" + }, { "name": "Python: Current File", "type": "python", "request": "launch", - "program": "${file}"z + "program": "${file}" }, { "name": "Python: Attach", -- cgit v1.2.3-ZIG