NetNewsWire/Multiplatform/Shared/NetNewsWire.swift

27 lines
476 B
Swift
Raw Normal View History

2020-06-27 18:22:01 +02:00
//
// NetNewsWire.swift
2020-06-27 18:22:01 +02:00
// Shared
//
// Created by Maurice Parker on 6/27/20.
// Copyright © 2020 Ranchero Software. All rights reserved.
//
import SwiftUI
@main
struct NetNewsWire: App {
#if os(macOS)
@NSApplicationDelegateAdaptor(AppDelegate.self) private var delegate
#endif
#if os(iOS)
@UIApplicationDelegateAdaptor(AppDelegate.self) private var delegate
#endif
2020-06-27 18:22:01 +02:00
var body: some Scene {
WindowGroup {
ContentView()
}
}
}