steamguard-cli/Program.cs
2016-08-21 12:04:35 -04:00

19 lines
468 B
C#

using System;
using System.Text;
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.");
}
}
}