mirror of
https://github.com/bitwarden/ios.git
synced 2025-12-10 17:46:07 -06:00
17 lines
374 B
Swift
17 lines
374 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct BitwardenWatchAp: App {
|
|
@WKExtensionDelegateAdaptor(ExtensionDelegate.self) var delegate
|
|
|
|
@SceneBuilder var body: some Scene {
|
|
WindowGroup {
|
|
NavigationView {
|
|
CipherListView()
|
|
}
|
|
}
|
|
|
|
WKNotificationScene(controller: NotificationController.self, category: "myCategory")
|
|
}
|
|
}
|