From af29d6a85c9927381c86df6e9f64de1ac3bcdc00 Mon Sep 17 00:00:00 2001 From: rouggy Date: Wed, 28 Aug 2024 10:58:09 +0700 Subject: [PATCH] update --- .vscode/launch.json | 16 ++++++++++++++++ go.mod | 3 +++ 2 files changed, 19 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 go.mod diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..37cbd11 --- /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 Package", + "type": "go", + "request": "launch", + "mode": "auto", + "program": "${fileDirname}", + "args": ["prerace", "xThor", "Test"] + } + ] +} \ No newline at end of file diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..608fba8 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.rouggy.com/rouggy/RaceNotifier.git + +go 1.22.4