/* Copyright © 2023 NAME HERE */ package main import ( "gitea.ravianand.me/Dan6erbond/listy/cmd" "github.com/spf13/viper" ) func main() { viper.SetConfigName("config") // name of config file (without extension) viper.SetConfigType("yaml") // REQUIRED if the config file does not have the extension in the name viper.AddConfigPath(".") // optionally look for config in the working directory viper.ReadInConfig() // Find and read the config file viper.SetDefault("server.scheme", "http") viper.SetDefault("server.host", "localhost:5001") cmd.Execute() }