Initial commit: Bluetooth mesh chat app with end-to-end encryption

This commit is contained in:
jack
2025-07-02 19:18:35 +02:00
commit 7e90bf6369
41 changed files with 2000 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import SwiftUI
@main
struct BitchatApp: App {
@StateObject private var chatViewModel = ChatViewModel()
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(chatViewModel)
}
#if os(macOS)
.windowStyle(.hiddenTitleBar)
.windowResizability(.contentSize)
#endif
}
}