This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/config/hcaptchasecretkey.go
Odyssey d6e4ba0761 hopefully fix issues
Signed-off-by: Odyssey <odyssey346@disroot.org>
2022-08-24 19:54:46 +02:00

19 lines
357 B
Go

package config
import (
"log"
"github.com/spf13/viper"
)
func HCaptchaSecretKey() string {
viper.SetConfigName("config")
viper.AddConfigPath("./data")
err := viper.ReadInConfig()
if err != nil {
log.Println("Error reading config for getting hcaptcha.secret_key", err.Error())
}
result := viper.GetString("hcaptcha.secret_key")
return result
}