This tool replaces `ConfigurationImporter` and partially replaces `duplicati_client`. This fixes #5474
11 lines
292 B
C#
11 lines
292 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace Duplicati.CommandLine.ServerUtil.Net8
|
|
{
|
|
// Wrapper class to keep code independent
|
|
public static class Program
|
|
{
|
|
public static Task<int> Main(string[] args)
|
|
=> Duplicati.CommandLine.ServerUtil.Program.Main(args);
|
|
}
|
|
} |