18 lines
265 B
Swift
18 lines
265 B
Swift
//
|
|
// 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()
|
|
}
|
|
}
|
|
}
|