22 lines
341 B
Swift
22 lines
341 B
Swift
//
|
|
// SecureStorageSampleApp.swift
|
|
// SecureStorageSample Watch App
|
|
//
|
|
// Created by Matt Bruce on 1/14/26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SecureStorageSample_Watch_AppApp: App {
|
|
init() {
|
|
_ = WatchConnectivityService.shared
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|