17 lines
299 B
Swift
17 lines
299 B
Swift
//
|
|
// PDSManApp.swift
|
|
// PDSMan
|
|
//
|
|
// Created by Atridad Lahiji on 2025-03-18.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
// This app entry point is replaced by PDSApp.swift
|
|
struct PDSManApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
Text("This app entry point is not used.")
|
|
}
|
|
}
|
|
}
|