chore(storage): remove servers.json in favor of just code at runtime

This commit is contained in:
Quentin McGaw
2026-05-24 22:00:34 +00:00
parent 39ac8b3432
commit ebbc630b31
5 changed files with 20 additions and 100 deletions
+1 -2
View File
@@ -3,6 +3,5 @@ package storage
import "fmt"
func panicOnProviderMissingHardcoded(provider string) {
panic(fmt.Sprintf("provider %s not found in hardcoded servers map; "+
"did you add the provider key in the embedded servers.json?", provider))
panic(fmt.Sprintf("provider %s not found in hardcoded servers map", provider))
}