-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathProgram.cs
More file actions
39 lines (34 loc) · 946 Bytes
/
Program.cs
File metadata and controls
39 lines (34 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace EventSniper
{
class Program
{
public static bool verbose;
static async Task Main(string[] args)
{
Dictionary<string, string> parsedArgs;
try
{
parsedArgs = Arguments.Parse(args);
}
catch (ArgumentException ex)
{
Output.WriteConsole($"[X] Unable to parse arguments: {ex.Message}");
return;
}
verbose = parsedArgs.ContainsKey("verbose");
if (parsedArgs.ContainsKey("u2u"))
{
U2U u2u = new U2U();
await u2u.Check(parsedArgs);
}
if (parsedArgs.ContainsKey("asreq"))
{
ASST asst = new ASST();
await asst.Check(parsedArgs);
}
}
}
}