18 lines
232 B
Swift
18 lines
232 B
Swift
//
|
|
// SwiftAudioApp.swift
|
|
// SwiftAudio
|
|
//
|
|
// Created by Brandon Sneed on 3/30/24.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct SwiftAudioApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
PlayerView()
|
|
}
|
|
}
|
|
}
|