steamguard-cli/Program.cs

18 lines
403 B
C#
Raw Normal View History

2016-08-21 17:29:27 +02:00
using System;
using System.Text;
using System.Linq;
/// <summary>
/// The main entry point for the application
/// </summary>
[STAThread]
public static void Main(string[] args)
{
2016-08-21 17:34:48 +02:00
if (args.Contains("--help") || args.Contains("-h"))
{
Console.WriteLine("steamguard-cli - v0.0");
Console.WriteLine();
Console.WriteLine("--help, -h Display this help message.");
}
2016-08-21 17:29:27 +02:00
}