Add initial support for reading stdin from the server binary

This commit is contained in:
2024-06-04 15:09:57 -04:00
parent 2d77a294bd
commit 0b7ce10a78
3 changed files with 14 additions and 10 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ import (
func ReadConfig(readKeys []string, missingValueError string) []string {
cfg, err := ini.Load(ConfigPath)
if err != nil {
fmt.Println(AnsiError + "Failed to load libmutton.ini" + AnsiReset)
fmt.Println(AnsiError + "Failed to load libmutton.ini: " + err.Error() + AnsiReset)
os.Exit(1)
}