commit 000587a80a582fafdb0e561dca449b8593514f81
Author: triesap <tyson@radroots.org>
Date: Thu, 11 Jun 2026 21:06:55 -0700
Initial commit
Diffstat:
3 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/.gitignore b/.gitignore
@@ -0,0 +1,6 @@
+.DS_Store
+.build/
+.swiftpm/
+DerivedData/
+*.xcuserdata/
+*.xcuserstate
diff --git a/Package.swift b/Package.swift
@@ -0,0 +1,12 @@
+// swift-tools-version: 6.0
+import PackageDescription
+
+let package = Package(
+ name: "RadrootsKit",
+ platforms: [
+ .iOS(.v18),
+ .macOS(.v15)
+ ],
+ products: [],
+ targets: []
+)
diff --git a/README b/README
@@ -0,0 +1,13 @@
+# apple_kit
+
+This is the README for `apple_kit` which contains `RadrootsKit`, the shared
+Swift package for native Rad Roots application services on Apple platforms.
+
+## Copyright
+
+Except as otherwise noted, all files in the `apple_kit` distribution are
+
+ Copyright (c) 2020-2026 Tyson Lupul
+
+For information on usage and redistribution, and for a DISCLAIMER OF ALL
+WARRANTIES, see LICENSE included in the `apple_kit` distribution.