Remvoed secrets for Twitch since they don't work

This commit is contained in:
Martin Barker
2023-01-28 02:13:17 +00:00
parent 36ad4fff02
commit b09eb0a641
4 changed files with 40 additions and 34 deletions

View File

@@ -40,6 +40,10 @@ namespace TwitchDesktopNotifications
String FileName = "store.json";
string fileContent = JsonSerializer.Serialize<JsonStructure.Store>(Store);
Console.WriteLine("I'm trying to save:");
Console.WriteLine(fileContent);
Console.WriteLine("to {0}", FilePath + "/" + FileName);
Directory.CreateDirectory(FilePath);
File.WriteAllText(FilePath + "/" + FileName, fileContent);
}