upd launch.json for q3rcon

This commit is contained in:
onyx-and-iris 2024-01-27 14:47:37 +00:00
parent 7ea3f50966
commit 2d21e400d8
2 changed files with 4 additions and 5 deletions

7
.vscode/launch.json vendored
View File

@ -5,14 +5,13 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "http server", "name": "rcon proxy",
"type": "go", "type": "go",
"request": "launch", "request": "launch",
"mode": "auto", "mode": "auto",
"program": "${workspaceFolder}/cmd/http/main.go", "program": "${workspaceFolder}/cmd/q3rcon_proxy/main.go",
"env": { "env": {
"LILPROXY_TARGET": "127.0.0.1:2456", "Q3RCON_PROXY": "28961:28960",
"LILPROXY_PORT":":9000"
} }
} }
] ]

2
go.mod
View File

@ -1,3 +1,3 @@
module github.com/dgparker/lilproxy module github.com/onyx-and-iris/q3rcon-proxy
go 1.18 go 1.18