9 lines
328 B
C#
9 lines
328 B
C#
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
|
|
namespace Moonlight.Client.Plugins;
|
|
|
|
public interface IPluginStartup
|
|
{
|
|
public Task BuildApplication(IServiceProvider serviceProvider, WebAssemblyHostBuilder builder);
|
|
public Task ConfigureApplication(IServiceProvider serviceProvider, WebAssemblyHost app);
|
|
} |