RTSDA-iOS/RTSDAApp.swift
2025-02-03 16:15:57 -05:00

20 lines
297 B
Swift

//
// RTSDAApp.swift
// RTSDA
//
// Created by Benjamin Slingo on 11/24/24.
//
import SwiftUI
@main
struct RTSDAApp: App {
@StateObject private var configService = ConfigService.shared
var body: some Scene {
WindowGroup {
SplashScreenView()
}
}
}