🎉 start the project

This commit is contained in:
loveuer
2025-07-09 22:50:23 +08:00
commit 84348f9eaf
31 changed files with 9990 additions and 0 deletions

20
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "go run",
"type": "go",
"request": "launch",
"mode": "auto",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/main.go",
"buildFlags": [
"-ldflags",
"-X loveuer/utodo/internal/opt.Version=0.0.1-beta -s -w"
],
"args": [
"--debug"
]
}
]
}