Turned into a monorepo for iOS and Android

This commit is contained in:
2025-12-07 01:36:53 -07:00
parent dcb8b8401b
commit 9dea9f6efa
92 changed files with 1803 additions and 1 deletions

View File

@@ -0,0 +1,18 @@
//
// Item.swift
// MagicCounter
//
// Created by Atridad Lahiji on 2025-12-06.
//
import Foundation
import SwiftData
@Model
final class Item {
var timestamp: Date
init(timestamp: Date) {
self.timestamp = timestamp
}
}