added file with plain text overrides (could be used to gain access if seen, so in another file)
This commit is contained in:
parent
ec5077d42b
commit
40fd7e4274
1 changed files with 24 additions and 0 deletions
24
privateFunctions.cs
Normal file
24
privateFunctions.cs
Normal file
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Pithos
|
||||
{
|
||||
class privateFunctions {
|
||||
public static List<string> validUserNames() {
|
||||
List<string> valids = new List<string>();
|
||||
valids.Add("Jake");
|
||||
valids.Add("13HowardJS03");
|
||||
return valids;
|
||||
}
|
||||
|
||||
public static List<string> validMachineNames()
|
||||
{
|
||||
List<string> valids = new List<string>();
|
||||
valids.Add(")");
|
||||
return valids;
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue