Files
hermes/mobile/ios-app/App/HermesApp.swift
T
2026-04-09 15:51:03 +02:00

16 lines
335 B
Swift

import SwiftUI
@main
struct HermesApp: App {
@StateObject private var analytics = HermesAnalyticsClient()
var body: some Scene {
WindowGroup {
RootView()
.preferredColorScheme(.dark)
.tint(HermesTheme.accent)
.environmentObject(analytics)
}
}
}