RIT-Dining/TigerDine/TigerDineApp.swift
NinjaCheetah 23ebc9d848
Replace all instances of "RIT Dining" with "TigerDine"
The project and some files were still named that way, so that's been fixed now. The bundle ID is stuck that way forever but oh well. Nobody will see that.
2025-12-24 16:41:18 -05:00

18 lines
225 B
Swift

//
// TigerDineApp.swift
// TigerDine
//
// Created by Campbell on 8/31/25.
//
import SwiftUI
@main
struct TigerDineApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}