ListenerApp/ListenerGS/ListenerGSApp.swift

18 lines
234 B
Swift
Raw Normal View History

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