trustwallet-assets/internal/config/config.go

59 lines
1.7 KiB
Go
Raw Permalink Normal View History

package config
import (
"path/filepath"
"github.com/trustwallet/go-libs/config/viper"
)
type (
Config struct {
App App `mapstructure:"app"`
ClientURLs ClientURLs `mapstructure:"client_urls"`
URLs URLs `mapstructure:"urls"`
TimeFormat string `mapstructure:"time_format"`
ValidatorsSettings ValidatorsSettings `mapstructure:"validators_settings"`
}
App struct {
LogLevel string `mapstructure:"log_level"`
}
ClientURLs struct {
Binance struct {
Dex string `mapstructure:"dex"`
Explorer string `mapstructure:"explorer"`
} `mapstructure:"binance"`
AssetsManagerAPI string `mapstructure:"assets_manager_api"`
}
URLs struct {
AssetsApp string `mapstructure:"assets_app"`
Logo string `mapstructure:"logo"`
}
ValidatorsSettings struct {
RootFolder RootFolder `mapstructure:"root_folder"`
ChainFolder ChainFolder `mapstructure:"chain_folder"`
AssetFolder AssetFolder `mapstructure:"asset_folder"`
ChainInfoFolder ChainInfoFolder `mapstructure:"chain_info_folder"`
ChainValidatorsAssetFolder ChainValidatorsAssetFolder `mapstructure:"chain_validators_asset_folder"`
DappsFolder DappsFolder `mapstructure:"dapps_folder"`
}
)
// Default is a configuration instance.
var Default = Config{} // nolint:gochecknoglobals // config must be global
// SetConfig reads a config file and returs an initialized config instance.
func SetConfig(confPath string) error {
confPath, err := filepath.Abs(confPath)
if err != nil {
return err
}
viper.Load(confPath, &Default)
return nil
}