WIP: Authenticate

This commit is contained in:
Philipp Wolfer 2023-11-21 08:51:47 +01:00
parent 3d3685d8bc
commit 94704f9cd0
No known key found for this signature in database
GPG key ID: 8FDF744D4919943B
5 changed files with 126 additions and 20 deletions

View file

@ -60,6 +60,7 @@ func ResolveBackend[T interface{}](config *viper.Viper) (T, error) {
err = errors.New(
fmt.Sprintf("Backend %s does not implement %s", backendName, interfaceName))
}
return result, err
}