1
0
mirror of https://github.com/yattee/yattee.git synced 2024-12-14 06:10:32 +05:30
yattee/Shared/PearvidiousApp.swift

24 lines
432 B
Swift
Raw Normal View History

2021-09-25 13:48:22 +05:30
import Defaults
2021-06-10 02:21:23 +05:30
import SwiftUI
@main
struct PearvidiousApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
2021-07-28 04:10:04 +05:30
#if !os(tvOS)
.commands {
SidebarCommands()
}
#endif
2021-09-25 13:48:22 +05:30
#if os(macOS)
Settings {
SettingsView()
.environmentObject(InstancesModel())
2021-09-25 13:48:22 +05:30
}
#endif
}
2021-06-10 02:21:23 +05:30
}