wabbajack/Wabbajack.CLI/Program.cs
2020-04-06 20:26:09 +02:00

27 lines
956 B
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(),
errs => 1);
}
}
}