support re-register

This commit is contained in:
haibo.chen
2025-03-12 15:28:43 +08:00
parent b36fa94d48
commit c5a526e3b7
8 changed files with 107226 additions and 37 deletions

18
.vscode/launch.json vendored
View File

@ -5,14 +5,28 @@
"version": "0.2.0",
"configurations": [
{
"name": "Launch Binary",
"name": "Launch Binary (Windows)",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/objs/srs-sip.exe",
"cwd": "${workspaceFolder}/objs",
"env": {},
"args": [],
"preLaunchTask": "build-windows",
"windows": {}
},
{
"name": "Launch Binary (Linux)",
"type": "go",
"request": "launch",
"mode": "exec",
"program": "${workspaceFolder}/objs/srs-sip",
"cwd": "${workspaceFolder}/objs",
"env": {},
"args": []
"args": [],
"preLaunchTask": "build-linux",
"linux": {}
}
]
}