1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-02-16 22:53:13 +03:00

14 lines
255 B
C#
Raw Normal View History

2021-05-08 18:52:59 +08:00
using MvvmCross.ViewModels;
using ProxySuper.Core.ViewModels;
namespace ProxySuper.Core
{
public class App : MvxApplication
{
public override void Initialize()
{
2021-05-14 19:07:19 +08:00
RegisterAppStart<HomeViewModel>();
2021-05-08 18:52:59 +08:00
}
}
}