Files
duplicati/Executables/net8/Duplicati.CommandLine.BackendTester/Program.cs
T

11 lines
335 B
C#
Raw Normal View History

2024-11-21 20:23:42 +01:00
using Duplicati.Library.Crashlog;
2024-03-04 14:00:55 +01:00
namespace Duplicati.CommandLine.BackendTester.Net8
2021-04-03 13:57:02 +02:00
{
// Wrapper class to keep code independent
public static class Program
{
public static int Main(string[] args)
2024-11-21 20:23:42 +01:00
=> CrashlogHelper.WrapWithCrashLog(() => Duplicati.CommandLine.BackendTester.Program.Main(args));
2021-04-03 13:57:02 +02:00
}
}