mail-deleter/.vscode/launch.json
baalajimaestro 4f1668b350
Init very basic mail deleter
Deletes matching patterns with regex

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
Change-Id: I8a68baedd2d8d1b60436eecbffd24e4b9e33a08c
2020-12-25 00:24:10 +05:30

16 lines
511 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": "Linux (Debug)",
"program": "${workspaceFolder}/target/debug/mail-deleter",
"args": [],
"cwd": "${workspaceFolder}"
}
]
}