ListenerApp/ListenerApp/ListenerAppApp.swift
2021-07-16 12:46:54 -04:00

18 lines
237 B
Swift

//
// ListenerAppApp.swift
// ListenerApp
//
// Created by Jeremy Rand on 2021-07-16.
//
import SwiftUI
@main
struct ListenerAppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}