16 lines
317 B
C#
Raw Normal View History

2025-01-25 00:27:02 +01:00
using System;
using Microsoft.Maui;
using Microsoft.Maui.Hosting;
namespace WheresMyMoney.Maui;
class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}