Added DefaultDockerImage to star. Completed star update form.

This commit is contained in:
2024-12-11 09:59:48 +01:00
parent aa9dbe36bd
commit 220eb28657
16 changed files with 557 additions and 11 deletions

View File

@@ -6,12 +6,10 @@ namespace MoonlightServers.ApiServer.Startup;
public class PluginStartup : IAppStartup
{
private readonly ILogger<PluginStartup> Logger;
private readonly BundleService BundleService;
public PluginStartup(ILogger<PluginStartup> logger, BundleService bundleService)
public PluginStartup(BundleService bundleService)
{
Logger = logger;
BundleService = bundleService;
}