Files
gluetun/internal/storage/helpers.go

9 lines
235 B
Go
Raw Normal View History

2024-03-21 09:48:02 +00:00
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))
}