diff options
Diffstat (limited to 'Hotline/iOSApp.swift')
| -rw-r--r-- | Hotline/iOSApp.swift | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Hotline/iOSApp.swift b/Hotline/iOSApp.swift new file mode 100644 index 0000000..2fb6ad2 --- /dev/null +++ b/Hotline/iOSApp.swift @@ -0,0 +1,18 @@ +import SwiftUI +import SwiftData +import UniformTypeIdentifiers + +@main +struct Application: App { + private var model = Hotline(trackerClient: HotlineTrackerClient(), client: HotlineClient()) + + @FocusedValue(\.activeHotlineModel) private var activeHotline: Hotline? + @FocusedValue(\.activeServerState) private var activeServerState: ServerState? + + var body: some Scene { + WindowGroup { + TrackerView() + .environment(model) + } + } +} |