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

9 lines
257 B
C#
Raw Normal View History

2024-03-04 14:00:55 +01:00
namespace Duplicati.CommandLine.BackendTool.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)
=> Duplicati.CommandLine.BackendTool.Program.Main(args);
}
}