Multi-Platform Package Manager for Stable Diffusion
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
489 B

using StabilityMatrix.Core.Models.Packages;
using StabilityMatrix.Core.Models.Progress;
namespace StabilityMatrix.Core.Models.PackageModification;
public class SetupOutputSharingStep(BasePackage package, string installPath) : IPackageStep
{
public Task ExecuteAsync(IProgress<ProgressReport>? progress = null)
{
package.SetupOutputFolderLinks(installPath);
return Task.CompletedTask;
}
public string ProgressTitle => "Setting up output sharing...";
}