steamguard-cli/Program.cs
Carson McManus dc2d6d2ee2 Revert "removed using System.Linq"
This reverts commit 153597590f.
2016-08-21 12:06:28 -04:00

20 lines
487 B
C#

using System;
using System.Text;
using System.Linq;
public static class Program
{
/// <summary>
/// The main entry point for the application
/// </summary>
[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.");
}
}
}