mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
35 lines
858 B
Swift
35 lines
858 B
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct YatteeApp: App {
|
|
#if os(macOS)
|
|
@NSApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
|
|
#endif
|
|
|
|
@StateObject private var menu = MenuModel()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environmentObject(menu)
|
|
}
|
|
#if !os(tvOS)
|
|
.handlesExternalEvents(matching: Set(["*"]))
|
|
.commands {
|
|
SidebarCommands()
|
|
CommandGroup(replacing: .newItem, addition: {})
|
|
MenuCommands(model: Binding<MenuModel>(get: { menu }, set: { _ in }))
|
|
}
|
|
#endif
|
|
|
|
#if os(macOS)
|
|
Settings {
|
|
SettingsView()
|
|
.environmentObject(AccountsModel())
|
|
.environmentObject(InstancesModel())
|
|
}
|
|
#endif
|
|
}
|
|
}
|