From 4a9b96e5cc8bf822bf3b2860b175f446cb45f98a Mon Sep 17 00:00:00 2001 From: Martin Ashby Date: Fri, 1 Jun 2018 19:33:11 +0100 Subject: Implemented animated GIFs --- .vscode/launch.json | 7 +++++++ 1 file changed, 7 insertions(+) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index a791e75..4217724 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,12 +4,19 @@ // 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": "Go Server 2", + "type": "go", + "request": "launch", + "program": "${workspaceRoot}/Server2.go" + }, { "name": "Python: Current File", "type": "python", -- cgit v1.2.3-ZIG