From cab1f521cb40f3006d087b9bc9732bb3edd2582d Mon Sep 17 00:00:00 2001 From: jerryli Date: Fri, 29 Mar 2024 14:15:29 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9EVscode=20=E8=B0=83=E8=AF=95?= =?UTF-8?q?=E5=90=8E=E5=8F=B0=E7=9A=84=E9=85=8D=E7=BD=AE.vscode/lanuch.jso?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..82c650f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "./app" + } + ] +} -- Gitee