Meshtastic-Apple/MeshtasticClient/MeshtasticClientApp.swift
2021-09-20 22:29:10 -07:00

25 lines
456 B
Swift

//
// MeshtasticClientApp.swift
// MeshtasticClient
//
// Created by Garth Vander Houwen on 8/18/21.
//
import SwiftUI
@main
struct MeshtasticClientApp: App {
@ObservedObject private var meshData = MeshData()
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(meshData)
.onAppear{
meshData.load()
}
}
}
}