wabbajack/Wabbajack.CLI/Program.cs

36 lines
1.3 KiB
C#
Raw Normal View History

2020-02-08 18:03:41 +00:00
using CommandLine;
2020-01-31 22:38:56 +00:00
using Wabbajack.CLI.Verbs;
using Wabbajack.Common;
using Console = System.Console;
using System.Reactive.Linq;
using System;
2020-01-31 22:38:56 +00:00
namespace Wabbajack.CLI
{
2020-02-08 18:03:41 +00:00
public class Program
2020-01-31 22:38:56 +00:00
{
2020-02-08 18:03:41 +00:00
private static int Main(string[] args)
2020-01-31 22:38:56 +00:00
{
Utils.LogMessages.Subscribe(Console.WriteLine);
2020-02-08 18:03:41 +00:00
return Parser.Default.ParseArguments(args, OptionsDefinition.AllOptions)
2020-01-31 22:38:56 +00:00
.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(),
2020-02-19 14:49:06 +00:00
(ChangeDownload opts) => opts.Execute(),
(ServerLog opts) => opts.Execute(),
(MyFiles opts) => opts.Execute(),
(DeleteFile opts) => opts.Execute(),
2020-04-06 18:26:09 +00:00
(Changelog opts) => opts.Execute(),
2020-04-08 19:56:53 +00:00
(FindSimilar opts) => opts.Execute(),
(BSADump opts) => opts.Execute(),
2020-05-04 23:03:50 +00:00
(MigrateGameFolderFiles opts) => opts.Execute(),
2020-06-20 22:51:47 +00:00
(HashFile opts) => opts.Execute(),
2020-01-31 22:38:56 +00:00
errs => 1);
}
}
}