This commit is contained in:
douboer
2025-09-07 12:39:28 +08:00
parent 1ba01e3c64
commit 4d033257fe
5714 changed files with 15866 additions and 1032 deletions

View File

@@ -0,0 +1,17 @@
#if os(iOS)
import SwiftUI
@main
struct IpadReaderApp: App {
@StateObject private var importer = BundleImporter()
@StateObject private var libraryVM = LibraryViewModel()
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(importer)
.environmentObject(libraryVM)
}
}
}
#endif