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

12 lines
365 B
C#
Raw Normal View History

using System.Threading.Tasks;
2024-11-21 20:23:42 +01:00
using Duplicati.Library.Crashlog;
namespace Duplicati.CommandLine.ServerUtil.Net8
{
// Wrapper class to keep code independent
public static class Program
{
public static Task<int> Main(string[] args)
2024-11-21 20:23:42 +01:00
=> CrashlogHelper.WrapWithCrashLog(() => Duplicati.CommandLine.ServerUtil.Program.Main(args));
}
}