// // IdentityStore.swift // punchnet // // Created by 安礼成 on 2026/2/5. // import Foundation actor IdentityStore { typealias IdentityID = UInt32 private let publisher: SnapshotPublisher private let identityMap: [IdentityID: IdentityRuleMap] = [:] init(publisher: SnapshotPublisher) { self.publisher = publisher } func apply(_ id: IdentityID, ruleBytes: Data) { // if model.affectsRuntime { // let snapshot = compileSnapshot(from: model) // publisher.publish(snapshot) // } } // // func compileSnapshot() -> IdentitySnapshot { // // } // }