mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
9 lines
235 B
Go
9 lines
235 B
Go
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))
|
|
}
|