From 2d7b9e365bfae5f315c7c09cb93ded0da585a18b Mon Sep 17 00:00:00 2001 From: "LinsRuis.HW1" Date: Tue, 4 Mar 2025 18:54:56 +0800 Subject: [PATCH] debugs --- .gitignore | 5 ++++- .vscode/launch.json | 16 ++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 001cbd9..797f8d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ reverse -models/ \ No newline at end of file +models/ + +__debug* +test.yml \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0981722 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch main", + "type": "go", + "request": "launch", + "mode": "debug", + "args":["-f","test.yml"], + "program": "${workspaceFolder}/main.go" + } + ] +} \ No newline at end of file