GoldbergGUI/GoldbergGUI.Core/Utils/ISecrets.cs

23 lines
417 B
C#
Raw Normal View History

// 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>";
}
}
}
*/
2021-01-08 12:36:57 -05:00
namespace GoldbergGUI.Core.Utils
{
public interface ISecrets
{
public string SteamWebApiKey();
}
}