Added instructions for how to use ISecrets.cs
This commit is contained in:
parent
99b9c52b40
commit
2b9ee795fb
1
.gitignore
vendored
1
.gitignore
vendored
@ -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
|
||||
|
@ -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
|
||||
{
|
||||
public interface ISecrets
|
||||
|
Loading…
Reference in New Issue
Block a user