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