mirror of
https://github.com/jeremysrand/ListenerApp.git
synced 2024-09-14 14:55:56 +00:00
18 lines
234 B
Swift
18 lines
234 B
Swift
//
|
|
// ListenerGSApp.swift
|
|
// ListenerGS
|
|
//
|
|
// Created by Jeremy Rand on 2021-07-16.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct ListenerGSApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|