wabbajack/Wabbajack.CLI/Program.cs
2020-05-02 14:15:36 -06:00

29 lines
1.0 KiB
C#

using CommandLine;
using Wabbajack.CLI.Verbs;
namespace Wabbajack.CLI
{
public class Program
{
private static int Main(string[] args)
{
return Parser.Default.ParseArguments(args, OptionsDefinition.AllOptions)
.MapResult(
(Encrypt opts) => opts.Execute(),
(Decrypt opts) => opts.Execute(),
(Validate opts) => opts.Execute(),
(DownloadUrl opts) => opts.Execute(),
(UpdateModlists opts) => opts.Execute(),
(UpdateNexusCache opts) => opts.Execute(),
(ChangeDownload opts) => opts.Execute(),
(ServerLog opts) => opts.Execute(),
(MyFiles opts) => opts.Execute(),
(DeleteFile opts) => opts.Execute(),
(Changelog opts) => opts.Execute(),
(FindSimilar opts) => opts.Execute(),
(BSADump opts) => opts.Execute(),
errs => 1);
}
}
}