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/webhook.go
Odyssey 4a6b4a82a7 Initial refactor of settings.
Signed-off-by: Odyssey <odyssey346@disroot.org>
2022-08-14 21:06:00 +02:00

19 lines
356 B
Go

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