From a3a00d162a7552bbc82ef76389a7a8a74c450e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=90=E6=B6=9B?= Date: Thu, 15 Sep 2022 09:05:38 +0800 Subject: [PATCH] =?UTF-8?q?chore(project):=E5=A2=9E=E5=8A=A0=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=BA=93=E6=96=87=E4=BB=B6=E5=B1=8F=E8=94=BD=EF=BC=8C?= =?UTF-8?q?=E5=8A=A0=E5=85=A5=E8=BF=90=E8=A1=8C=E9=85=8D=E7=BD=AE=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + .vscode/launch.json | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 18c4ff1..45e75ee 100644 --- a/.gitignore +++ b/.gitignore @@ -180,3 +180,4 @@ fabric.properties # Block sensitive configuration files settings.local.yaml log/ +__debug_bin diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..bee6aa6 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,19 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch Service", + "type": "go", + "request": "launch", + "mode": "auto", + "cwd": "${workspaceFolder}", + "program": "${workspaceRoot}/main.go", + "args": [ + "-tag=jsoniter" + ] + } + ] +} \ No newline at end of file