Files
LanMountainDesktop/LanMountainDesktop.Launcher/Update/UpdateEngineFactory.cs
2026-05-28 15:14:37 +08:00

8 lines
291 B
C#

namespace LanMountainDesktop.Launcher.Update;
internal static class UpdateEngineFactory
{
public static IUpdateEngine Create(DeploymentLocator deploymentLocator, IUpdateProgressReporter? progressReporter = null) =>
new UpdateEngineFacade(deploymentLocator, progressReporter);
}