2016-08-21 17:29:27 +02:00
|
|
|
using System;
|
|
|
|
using System.Text;
|
|
|
|
using System.Linq;
|
|
|
|
|
2016-08-21 17:38:03 +02:00
|
|
|
public static class Program
|
2016-08-21 17:29:27 +02:00
|
|
|
{
|
2016-08-21 17:38:03 +02:00
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
public static void Main(string[] args)
|
2016-08-21 17:34:48 +02:00
|
|
|
{
|
2016-08-21 17:38:03 +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:46:56 +02:00
|
|
|
return 0;
|
2016-08-21 17:38:03 +02:00
|
|
|
}
|
2016-08-21 17:46:56 +02:00
|
|
|
return 1;
|
2016-08-21 17:34:48 +02:00
|
|
|
}
|
2016-08-21 17:29:27 +02:00
|
|
|
}
|