15 lines
343 B
Swift
15 lines
343 B
Swift
//
|
|
// AppRouterUser.swift
|
|
// Crush
|
|
//
|
|
// Created by Leon on 2025/9/4.
|
|
//
|
|
|
|
extension AppRouter{
|
|
static func goPersonalInformationFill(_ userToken: String) {
|
|
let vc = PersonalInformationFillController()
|
|
vc.userToken = userToken
|
|
UIWindow.getTopNavigationController()?.pushViewController(vc, animated: true)
|
|
}
|
|
}
|