using CommandLine;
using DiscordDelete;
CommandLine
.Parser.Default.ParseArguments<DeleteOptions, ScanOptions>(args)
.MapResult(
(DeleteOptions opt) =>
{
return 0;
},
(ScanOptions opt) =>
errs => 1
);