22 lines
324 B
Swift
22 lines
324 B
Swift
//
|
|
// SecureStorgageSampleApp.swift
|
|
// SecureStorgageSample
|
|
//
|
|
// Created by Matt Bruce on 1/13/26.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SecureStorgageSampleApp: App {
|
|
init() {
|
|
_ = WatchConnectivityService.shared
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|