Initial Commit

This commit is contained in:
Scarriffle
2026-05-13 17:46:14 +02:00
commit 7d0bc6466a
8 changed files with 467 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
//
// Audiobookshelf_swiftApp.swift
// Audiobookshelf swift
//
// Created by Guido Schmit on 13.05.2026.
//
import SwiftUI
@main
struct Audiobookshelf_swiftApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}