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.
37 lines
1.3 KiB
37 lines
1.3 KiB
using StabilityMatrix.Core.Helper; |
|
using StabilityMatrix.Core.Helper.Cache; |
|
using StabilityMatrix.Core.Services; |
|
|
|
namespace StabilityMatrix.Core.Models.Packages; |
|
|
|
public class DankDiffusion : BaseGitPackage |
|
{ |
|
public DankDiffusion(IGithubApiCache githubApi, ISettingsManager settingsManager, IDownloadService downloadService, |
|
IPrerequisiteHelper prerequisiteHelper) : |
|
base(githubApi, settingsManager, downloadService, prerequisiteHelper) |
|
{ |
|
} |
|
|
|
public override string Name => "dank-diffusion"; |
|
public override string DisplayName { get; set; } = "Dank Diffusion"; |
|
public override string Author => "mohnjiles"; |
|
public override string Blurb => "A dank interface for diffusion"; |
|
public override string LaunchCommand { get; } |
|
public override Uri PreviewImageUri { get; } |
|
|
|
public override Task RunPackage(string installedPackagePath, string arguments) |
|
{ |
|
throw new System.NotImplementedException(); |
|
} |
|
|
|
public override List<LaunchOptionDefinition> LaunchOptions { get; } |
|
public override Task<string> GetLatestVersion() |
|
{ |
|
throw new System.NotImplementedException(); |
|
} |
|
|
|
public override Task<IEnumerable<PackageVersion>> GetAllVersions(bool isReleaseMode = true) |
|
{ |
|
throw new System.NotImplementedException(); |
|
} |
|
}
|
|
|