Overhaul Secrets implementation
This commit is contained in:
parent
dfd9f1a97b
commit
5e2833e068
3 changed files with 11 additions and 21 deletions
8
auto-creamapi/Utils/ISecrets.cs
Normal file
8
auto-creamapi/Utils/ISecrets.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
namespace auto_creamapi.Utils
|
||||
{
|
||||
public interface ISecrets
|
||||
{
|
||||
public string ForumUsername();
|
||||
public string ForumPassword();
|
||||
}
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
namespace auto_creamapi.Utils
|
||||
{
|
||||
/// <summary>
|
||||
/// To use this:
|
||||
/// Rename file Secrets.EXAMPLE.cs to Secrets.cs
|
||||
/// Rename class Secrets_REMOVETHIS to Secrets
|
||||
/// Enter the relevant info below
|
||||
/// </summary>
|
||||
public static class Secrets_REMOVETHIS
|
||||
{
|
||||
public const string ForumUsername = "Enter username here";
|
||||
public const string ForumPassword = "Enter password here";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue