EtherGuard-VPN/.vscode/launch.json

17 lines
604 B
JSON
Raw Normal View History

2021-08-16 20:58:15 +02:00
{
// 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": "${workspaceFolder}",
2021-08-24 10:43:55 +02:00
"env": {"CGO_CFLAGS":"-I/usr/include/memif"},
2021-08-25 10:13:53 +02:00
"args":["-config","example_config/super_mode/n1.yaml","-mode","edge"/*,"-example"*/],
2021-08-16 20:58:15 +02:00
}
]
}