main
1using System;
2using MoMoney.boot;
3using MoMoney.Presentation.Winforms.Views;
4
5namespace MoMoney
6{
7 public class Bootstrap : WindowsFormsApplication<ApplicationShell>
8 {
9 [STAThread]
10 static void Main()
11 {
12 new Bootstrap().run();
13 }
14 }
15}