// // AppRouterCoin.swift // Crush // // Created by Leon on 2025/8/21. // extension AppRouter{ static func goWalletCenter(){ let vc = WalletMainPagerController() UIWindow.getTopViewController()?.navigationController?.pushViewController(vc, animated: true) } static func goBillList(){ let vc = BillDetailListController() UIWindow.getTopViewController()?.navigationController?.pushViewController(vc, animated: true) } static func goVIPCenter(){ let vc = VIPPrivilegesShowController() UIWindow.getTopViewController()?.navigationController?.pushViewController(vc, animated: true) } }