diff --git a/.gitignore b/.gitignore index e1ef113..1a57dee 100644 --- a/.gitignore +++ b/.gitignore @@ -541,3 +541,4 @@ MigrationBackup/ .ionide/ # End of https://www.toptal.com/developers/gitignore/api/intellij,rider,visualstudio,dotnetcore,windows +/GoldbergGUI.Core/Utils/Secrets.cs diff --git a/GoldbergGUI.Core/Utils/ISecrets.cs b/GoldbergGUI.Core/Utils/ISecrets.cs index 3ab1d9e..7495c31 100644 --- a/GoldbergGUI.Core/Utils/ISecrets.cs +++ b/GoldbergGUI.Core/Utils/ISecrets.cs @@ -1,3 +1,19 @@ +// Create a "Secrets" class, implement "ISecrets" interface and add your keys: +/* +using System; + +namespace GoldbergGUI.Core.Utils +{ + public class Secrets : ISecrets + { + public string SteamWebApiKey() + { + return ""; + } + } +} + */ + namespace GoldbergGUI.Core.Utils { public interface ISecrets