LocalAI/.vscode/launch.json
2023-04-15 15:59:32 -07:00

16 lines
275 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Go",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/main.go",
"args": [
"api"
]
}
]
}