import Defaults import SwiftUI @main struct PearvidiousApp: App { #if os(macOS) @NSApplicationDelegateAdaptor(AppDelegate.self) var appDelegate #endif var body: some Scene { WindowGroup { ContentView() } .handlesExternalEvents(matching: Set(["*"])) #if !os(tvOS) .commands { SidebarCommands() } #endif #if os(macOS) Settings { SettingsView() .environmentObject(InstancesModel()) } #endif } }