initial commit: Proximity iOS app proposal, full Swift code scaffold, reference backend, testing docs, generated Xcode project

This commit is contained in:
2026-08-12 00:22:01 +00:00
commit 9d1b0f8dd9
52 changed files with 6271 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import Foundation
/// The moment two present users mutually acknowledge each other.
///
/// This is the emotional climax of the product the instant two strangers
/// who were physically near each other both chose to be seen, and their
/// silhouettes resolve into people. Everything else in the app exists to
/// create this moment.
struct Reveal: Identifiable {
let id: UUID
/// The encounter that produced this reveal.
let encounter: Encounter
/// The connection created by mutual consent.
let connection: Connection
init(encounter: Encounter, connection: Connection) {
self.id = connection.id
self.encounter = encounter
self.connection = connection
}
}