2021-01-09 16:51:44 -05:00
|
|
|
// 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();
|
|
|
|
}
|
|
|
|
}
|