mirror of
https://github.com/xweiba/location-spoofer.git
synced 2026-09-26 08:31:53 +08:00
16 lines
320 B
Swift
16 lines
320 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct PaopaoLocationSpooferApp: App {
|
|
init() {
|
|
RuntimeLogger.info("APP", "Lifecycle", "========== App 启动 ==========")
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environment(\.locale, AppLocalization.locale)
|
|
}
|
|
}
|
|
}
|