// // yanaApp.swift // yana // // Created by P on 2025/4/21. // import SwiftUI import NIMSDK @main struct yanaApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { WindowGroup { ContentView() } } }