mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 00:08:21 +00:00
24 lines
432 B
Swift
24 lines
432 B
Swift
import Defaults
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct PearvidiousApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
#if !os(tvOS)
|
|
.commands {
|
|
SidebarCommands()
|
|
}
|
|
#endif
|
|
|
|
#if os(macOS)
|
|
Settings {
|
|
SettingsView()
|
|
.environmentObject(InstancesModel())
|
|
}
|
|
#endif
|
|
}
|
|
}
|