9 lines
245 B
C#
9 lines
245 B
C#
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
|
|
|
namespace Moonlight.Frontend.Startup;
|
|
|
|
public interface IAppStartup
|
|
{
|
|
public void PreBuild(WebAssemblyHostBuilder builder);
|
|
public void PostBuild(WebAssemblyHost application);
|
|
} |