11a792d96c
Signed-off-by: Odyssey <odyssey346@disroot.org>
20 lines
362 B
Go
20 lines
362 B
Go
package config
|
|
|
|
import (
|
|
"log"
|
|
"strconv"
|
|
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func Port() string {
|
|
viper.SetConfigName("config")
|
|
viper.AddConfigPath("./data")
|
|
err := viper.ReadInConfig()
|
|
if err != nil {
|
|
log.Println("Error reading config. Error getting: segfautils.port", err.Error())
|
|
}
|
|
result := strconv.Itoa(viper.GetInt("segfautils.port"))
|
|
return result
|
|
}
|