Files
pkdns/.vscode/launch.json
Severin Buhler 07e63c887e feat: cname
2024-02-04 11:52:11 +01:00

27 lines
753 B
JSON

{
// 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": [
{
"type": "lldb",
"request": "launch",
"name": "Dns Server",
"cargo": {
"args": [
"build",
"--bin=pkdns",
"--package=pkdns"
],
"filter": {
"name": "pkdns",
"kind": "bin"
}
},
"args": [
],
"cwd": "${workspaceFolder}"
},
]
}