Added basic help message

This commit is contained in:
Carson McManus 2016-08-21 11:34:48 -04:00
parent e6e0ed3ef0
commit 0cd0b776bb

View file

@ -8,5 +8,10 @@ using System.Linq;
[STAThread]
public static void Main(string[] args)
{
if (args.Contains("--help") || args.Contains("-h"))
{
Console.WriteLine("steamguard-cli - v0.0");
Console.WriteLine();
Console.WriteLine("--help, -h Display this help message.");
}
}