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/hcaptchasitekey.go

20 lines
373 B
Go

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