Restructure project folders

This commit is contained in:
Scarriffle
2026-05-17 08:45:37 +02:00
parent 652cfc4cf4
commit 069f8bac2d
80 changed files with 6102 additions and 547 deletions

View File

@@ -0,0 +1,20 @@
import SwiftUI
@main
struct Audiobookshelf_swiftApp: App {
@State private var appState = AppState()
var body: some Scene {
WindowGroup {
ContentView()
.environment(appState)
.task { await appState.bootstrap() }
}
.windowResizability(.contentSize)
Settings {
SettingsView()
.environment(appState)
}
}
}