Remove legacy steamcmd and SCUM runtime coupling

This commit is contained in:
npc0-hue
2026-09-04 12:37:39 +08:00
parent 26c07e232d
commit a695aafd0f
16 changed files with 113 additions and 91 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ package main
import "testing"
func TestDiagnosticPlatformAddressOmitsCredentials(t *testing.T) {
if got := diagnosticPlatformAddress("https://token:secret@scum.npc0.com/api"); got != "https://scum.npc0.com/api" {
if got := diagnosticPlatformAddress("https://token:secret@platform.example.test/api"); got != "https://platform.example.test/api" {
t.Fatalf("unexpected diagnostic address %q", got)
}
if got := diagnosticPlatformAddress("not a URL"); got != "invalid" {