added file with plain text overrides (could be used to gain access if seen, so in another file)

This commit is contained in:
Jake Howard 2014-12-29 23:43:16 +00:00
parent ec5077d42b
commit 40fd7e4274

24
privateFunctions.cs Normal file
View 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;
}
}
}