summaryrefslogtreecommitdiff
path: root/Xmission/XmissionApp.swift
blob: cc2719be1c7b18e8b5c91d7f1ecaee19960e5a18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
//  XmissionApp.swift
//  Xmission
//
//  Created by Christian Segundo Guevara on 11/6/23.
//

import SwiftUI

@main
struct XmissionApp: App {
    var body: some Scene {
        WindowGroup {
            ContentView()
        }
    }
}