ListenerApp/ListenerGS/ListenerGSApp.swift

18 lines
234 B
Swift
Raw Normal View History

2021-07-16 12:46:54 -04:00
//
2021-09-15 22:42:53 -04:00
// ListenerGSApp.swift
// ListenerGS
2021-07-16 12:46:54 -04:00
//
// Created by Jeremy Rand on 2021-07-16.
//
import SwiftUI
@main
2021-09-15 22:42:53 -04:00
struct ListenerGSApp: App {
2021-07-16 12:46:54 -04:00
var body: some Scene {
WindowGroup {
ContentView()
}
}
}