// // copinismApp.swift // copinism // // Created by 黄仕杰 on 2024/6/4. // import SwiftUI @main struct small_red_bookApp: App { @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate var body: some Scene { WindowGroup { ContentView() } } }