Initial Commit

This commit is contained in:
2026-03-27 09:21:41 +01:00
commit e9b6412d71
40 changed files with 6801 additions and 0 deletions
@@ -0,0 +1,20 @@
//
// 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()
var body: some Scene {
WindowGroup {
RootView()
.environment(service)
}
}
}