msg-desktop/MSG Desktop/MSG_DesktopApp.swift

18 lines
233 B
Swift
Raw Normal View History

2025-03-08 07:20:19 -07:00
//
// MSG_DesktopApp.swift
// MSG Desktop
//
// Created by Chad Nelson on 3/8/25.
//
import SwiftUI
@main
struct MSG_DesktopApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}