Meshtastic-Apple/MeshtasticClient/MeshtasticClientApp.swift
Garth Vander Houwen ff017aab5e Initial Commit
2021-08-18 22:33:05 -07:00

20 lines
417 B
Swift

//
// MeshtasticClientApp.swift
// MeshtasticClient
//
// Created by Garth Vander Houwen on 8/18/21.
//
import SwiftUI
@main
struct MeshtasticClientApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
}
}
}