Files
duplicati/Executables/net8/Duplicati.CommandLine.Snapshots/Program.cs
Kenneth Skovhede 8fe14b4754 Fixed namespaces
2024-05-21 10:22:57 +02:00

9 lines
250 B
C#

namespace Duplicati.CommandLine.Snapshots.Net8
{
// Wrapper class to keep code independent
public static class Program
{
public static void Main(string[] args)
=> Duplicati.Library.Snapshots.Program.Main(args);
}
}