spb/poche Public
Agent personnel 100 % on-device — SwiftUI + Apple Foundation Models + EventKit + SwiftData. Aucune API, aucun serveur.
Swift 100%
1//2// PocheApp.swift3// Poche4//5// Author: Simon-Pierre Boucher6// Contact: contact@spboucher.ai7//89import SwiftUI10import SwiftData1112@main13struct PocheApp: App {14 @State private var dependencies = AppDependencies(container: PocheContainer.shared)1516 var body: some Scene {17 WindowGroup {18 RootView()19 .environment(dependencies)20 .task {21 // Content shared into Poche from other apps (Share22 // Extension) lands in the group inbox; import it as notes.23 dependencies.store.importSharedInbox()24 }25 }26 .modelContainer(PocheContainer.shared)27 }28}29