From 9cfd944760a3217b3bf5d3c5e5c27998979ed8ad Mon Sep 17 00:00:00 2001 From: zhouxhere Date: Thu, 21 Nov 2024 17:57:34 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E5=A2=9E=E5=8A=A0vscode=E8=B0=83?= =?UTF-8?q?=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/launch.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ddf3289 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,24 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Package in Debug Mode", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "./bin/syz.go", + "args": ["start"] + }, + { + "name": "Launch Package in Prod Mode", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "./bin/syz.go", + "args": ["start", "--mode", "prod"] + } + ] +} \ No newline at end of file