Files
duplicati/Executables/net8/Duplicati.CommandLine.ServerUtil/Program.cs
T
Kenneth Skovhede 735b4020eb Implemented duplicati-server-util for sending various commands to a running server.
This tool replaces `ConfigurationImporter` and partially replaces `duplicati_client`.
This fixes #5474
2024-08-26 20:00:13 +02:00

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);
}
}