using System.Reflection;
namespace XFEExtension.NetCore.XApp.Extensions;
///
/// XApp拓展
///
public static class XAppExtensions
{
///
/// 获取主页面
///
/// XApp应用
///
public static async Task GetMainPage(this Core.XApp xApp) => await XAppLoader.GetMainPage(xApp);
///
/// 获取主页面
///
/// XApp应用
///
public static async Task GetMainPage(this Assembly xAppAssembly) => await XAppLoader.GetMainPage(xAppAssembly, []);
}