Added instructions for how to use ISecrets.cs

This commit is contained in:
Jeddunk 2021-01-09 22:51:44 +01:00
parent 99b9c52b40
commit 2b9ee795fb
2 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -541,3 +541,4 @@ MigrationBackup/
.ionide/ .ionide/
# End of https://www.toptal.com/developers/gitignore/api/intellij,rider,visualstudio,dotnetcore,windows # End of https://www.toptal.com/developers/gitignore/api/intellij,rider,visualstudio,dotnetcore,windows
/GoldbergGUI.Core/Utils/Secrets.cs

View File

@ -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 "<ENTER STEAM WEB API KEY HERE>";
}
}
}
*/
namespace GoldbergGUI.Core.Utils namespace GoldbergGUI.Core.Utils
{ {
public interface ISecrets public interface ISecrets