mcswebapi/.vscode/launch.json
Harrison Deng e1ff91f1d8
Some checks failed
RealYHD/mcswebapi/pipeline/head There was a failure building this commit
Refactored to new domain name and locked spigot dependency version.
2022-12-08 20:08:05 +00:00

22 lines
643 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": "java",
"name": "Launch App",
"request": "launch",
"mainClass": "net.reslate.mcswebapi.App",
"projectName": "mcswebapi"
},
{
"type": "java",
"name": "Attach",
"request": "attach",
"hostName": "localhost",
"port": "25577"
}
]
}