mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
18 lines
321 B
C#
18 lines
321 B
C#
using System.Threading.Tasks;
|
|
using Uno.UI.Hosting;
|
|
|
|
namespace Marechai.App;
|
|
|
|
public class Program
|
|
{
|
|
public static async Task Main(string[] args)
|
|
{
|
|
var host = UnoPlatformHostBuilder.Create()
|
|
.App(() => new App())
|
|
.UseWebAssembly()
|
|
.Build();
|
|
|
|
await host.RunAsync();
|
|
}
|
|
}
|