18 lines
234 B
Swift
18 lines
234 B
Swift
//
|
|
// music_playerApp.swift
|
|
// music player
|
|
//
|
|
// Created by aswer on 23.06.2026.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct music_playerApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|