15 lines
289 B
Swift
15 lines
289 B
Swift
|
|
//
|
||
|
|
// AppRouterDiscover.swift
|
||
|
|
// Crush
|
||
|
|
//
|
||
|
|
// Created by Leon on 2025/9/9.
|
||
|
|
//
|
||
|
|
|
||
|
|
extension AppRouter{
|
||
|
|
static func goLeaderboardPager(){
|
||
|
|
let vc = LeaderboardPagerMainController()
|
||
|
|
UIWindow.getTopNavigationController()?.pushViewController(vc, animated: true)
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|