18 lines
269 B
Swift
18 lines
269 B
Swift
//
|
|
// music_playerWatchApp.swift
|
|
// music playerWatch Watch App
|
|
//
|
|
// Created by aswer on 30.06.2026.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct music_playerWatch_Watch_AppApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|