// // Mobile_Music_AssistantApp.swift // Mobile Music Assistant // // Created by Sven Hanold on 26.03.26. // import SwiftUI @main struct Mobile_Music_AssistantApp: App { @State private var service = MAService() @State private var themeManager = MAThemeManager() var body: some Scene { WindowGroup { RootView() .environment(service) .environment(themeManager) } } }