Added app startup for the frontend

This commit is contained in:
2024-12-13 18:46:10 +01:00
parent 5efeb5fba6
commit 094af845a0
2 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
namespace Moonlight.Client.Interfaces;
public interface IAppStartup
{
public Task BuildApp(WebAssemblyHostBuilder builder);
public Task ConfigureApp(WebAssemblyHost app);
}