mirror of https://github.com/gophish/gophish
Pending changes exported from your codespace
parent
8d1a4335b6
commit
a0b4d60cc5
|
@ -34,7 +34,9 @@
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"vscode": {
|
"vscode": {
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"golang.go"
|
"golang.go",
|
||||||
|
"ms-vscode.cpptools",
|
||||||
|
"GitHub.copilot"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,6 +4,20 @@
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Launch file",
|
||||||
|
"type": "go",
|
||||||
|
"request": "launch",
|
||||||
|
"mode": "debug",
|
||||||
|
"program": "${file}"
|
||||||
|
},
|
||||||
|
http
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
lau
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "Connect to server",
|
"name": "Connect to server",
|
||||||
|
@ -66,14 +80,15 @@
|
||||||
"host": "127.0.0.1"
|
"host": "127.0.0.1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "\","type": "go","request": "attach",
|
"name": "\","type": "go","request": "attach","mode": "remote",
|
||||||
"mode": "remote",
|
|
||||||
"remotePath": "${workspaceFolder}",
|
"remotePath": "${workspaceFolder}",
|
||||||
"port": 2345,
|
"port": 2345,
|
||||||
"host": "127.0.0.1"
|
"host": "127.0.0.1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "","type": "go","request": "attach",
|
"name": "",
|
||||||
|
"type": "go",
|
||||||
|
"request": "attach",
|
||||||
"mode": "remote",
|
"mode": "remote",
|
||||||
"remotePath": "${workspaceFolder}",
|
"remotePath": "${workspaceFolder}",
|
||||||
"port": 2345,
|
"port": 2345,
|
||||||
|
|
Loading…
Reference in New Issue