From 2b9ee795fb57c33ad83a450f9b47bdfd8dc052dc Mon Sep 17 00:00:00 2001 From: Jeddunk Date: Sat, 9 Jan 2021 22:51:44 +0100 Subject: [PATCH] Added instructions for how to use ISecrets.cs --- .gitignore | 1 + GoldbergGUI.Core/Utils/ISecrets.cs | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) 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