diff --git a/DiscordDelete/Program.cs b/DiscordDelete/Program.cs index 3751555..0a76e9d 100644 --- a/DiscordDelete/Program.cs +++ b/DiscordDelete/Program.cs @@ -1,2 +1,16 @@ -// See https://aka.ms/new-console-template for more information -Console.WriteLine("Hello, World!"); +using CommandLine; +using DiscordDelete; + +CommandLine + .Parser.Default.ParseArguments(args) + .MapResult( + (DeleteOptions opt) => + { + return 0; + }, + (ScanOptions opt) => + { + return 0; + }, + errs => 1 + );