Added basic help message
This commit is contained in:
parent
e6e0ed3ef0
commit
0cd0b776bb
1 changed files with 6 additions and 1 deletions
|
@ -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.");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue