18 lines
235 B
Swift
18 lines
235 B
Swift
//
|
|
// FastCosterApp.swift
|
|
// FastCoster
|
|
//
|
|
// Created by Michael Pivato on 1/2/2023.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct FastCosterApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|