From b60b90db07f8fce8e7f4d8a66a3bec4649c0f1fe Mon Sep 17 00:00:00 2001 From: TsMask <340112800@qq.com> Date: Sat, 8 Nov 2025 15:09:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20vscode=E4=B8=8B=E5=A2=9E=E5=8A=A0debug?= =?UTF-8?q?=E8=B0=83=E8=AF=95=E8=BF=90=E8=A1=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- .vscode/launch.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 726556b..ce53400 100644 --- a/.gitignore +++ b/.gitignore @@ -11,7 +11,7 @@ coverage.* y.output .DS_Store -.vscode/ +# .vscode/ .idea _tools/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..fc475b8 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "调试模式", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "cmd/main.go", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file