aboutsummaryrefslogtreecommitdiff
path: root/Hotline/Views/HotlineView.swift
diff options
context:
space:
mode:
authorDustin Mierau <dustin@mierau.me>2023-12-08 16:12:47 -0800
committerDustin Mierau <dustin@mierau.me>2023-12-08 16:13:03 -0800
commit84aaa9ef0a1be6986e38d7e4f58e07d3cb84979e (patch)
treec0b3a36f14295a921413b7db0f1b37c9ec10e715 /Hotline/Views/HotlineView.swift
parent537ed932a4c8d639089f276e322de4e946b0d26b (diff)
Move tracker client to async/await. TrackerView uses Model now. Fix string encodings for MacRoman and japanese.
Diffstat (limited to 'Hotline/Views/HotlineView.swift')
-rw-r--r--Hotline/Views/HotlineView.swift17
1 files changed, 0 insertions, 17 deletions
diff --git a/Hotline/Views/HotlineView.swift b/Hotline/Views/HotlineView.swift
deleted file mode 100644
index f950dd7..0000000
--- a/Hotline/Views/HotlineView.swift
+++ /dev/null
@@ -1,17 +0,0 @@
-import SwiftUI
-
-struct HotlineView: View {
- @Environment(HotlineState.self) private var appState
- @Environment(HotlineClient.self) private var hotline
- @Environment(HotlineTrackerClient.self) private var tracker
-
- var body: some View {
- TrackerView()
- }
-}
-
-#Preview {
- HotlineView()
- .environment(HotlineClient())
- .environment(HotlineTrackerClient(tracker: HotlineTracker("hltracker.com")))
-}