2024-08-26 20:00:13 +02:00
|
|
|
using System.Threading.Tasks;
|
2024-11-21 20:23:42 +01:00
|
|
|
using Duplicati.Library.Crashlog;
|
2024-08-26 20:00:13 +02:00
|
|
|
|
|
|
|
|
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));
|
2024-08-26 20:00:13 +02:00
|
|
|
}
|
|
|
|
|
}
|