feat: scaffold MyPassCore Swift Package

- Add MyPassCore local Swift Package with directory structure for
  Models, KDBX, TOTP, Keychain, AutoFill, and Session modules
- Add KeePassKit as git submodule (Vendor/KeePassKit) with SPM wrapper
  Package.swift since upstream has no native SPM support
- Delete SwiftData boilerplate Item.swift from main app target

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-22 12:19:36 +02:00
co-authored by Claude Sonnet 4.6
parent 9b93ca59b8
commit 32c37c6f30
4 changed files with 30 additions and 18 deletions
-18
View File
@@ -1,18 +0,0 @@
//
// Item.swift
// MyPass
//
// Created by Christophe Vila on 21/05/2026.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}