18 lines
353 B
C#
Raw Permalink Normal View History

2025-03-05 10:42:54 +03:00
using System;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace sssaaa
{
internal class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}