Add daemonize mode, readme

This commit is contained in:
2023-12-03 19:18:26 -06:00
parent c250828dbe
commit 6eadef654f
3 changed files with 32 additions and 1 deletions

10
.vscode/launch.json vendored
View File

@ -9,7 +9,15 @@
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}"
"program": "${workspaceFolder}/main.go"
},
{
"name": "Launch daemonized",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"args": ["-d"]
}
]
}