diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..95c4320
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
+.DS_Store
+/.build
+/Packages
+/*.xcodeproj
+xcuserdata/
diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
new file mode 100644
index 0000000..706eede
--- /dev/null
+++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
@@ -0,0 +1,7 @@
+
+
+
+
+
diff --git a/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
new file mode 100644
index 0000000..18d9810
--- /dev/null
+++ b/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
@@ -0,0 +1,8 @@
+
+
+
+
+ IDEDidComputeMac32BitWarning
+
+
+
diff --git a/Package.swift b/Package.swift
new file mode 100644
index 0000000..4cc44c5
--- /dev/null
+++ b/Package.swift
@@ -0,0 +1,28 @@
+// swift-tools-version:5.1
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+ name: "CloudKitFeatureToggles",
+ products: [
+ // Products define the executables and libraries produced by a package, and make them visible to other packages.
+ .library(
+ name: "CloudKitFeatureToggles",
+ targets: ["CloudKitFeatureToggles"]),
+ ],
+ dependencies: [
+ // Dependencies declare other packages that this package depends on.
+ // .package(url: /* package url */, from: "1.0.0"),
+ ],
+ targets: [
+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
+ // Targets can depend on other targets in this package, and on products in packages which this package depends on.
+ .target(
+ name: "CloudKitFeatureToggles",
+ dependencies: []),
+ .testTarget(
+ name: "CloudKitFeatureTogglesTests",
+ dependencies: ["CloudKitFeatureToggles"]),
+ ]
+)
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c08f77e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+# CloudKitFeatureToggles
+
+A description of this package.
diff --git a/Sources/CloudKitFeatureToggles/CloudKitFeatureToggles.swift b/Sources/CloudKitFeatureToggles/CloudKitFeatureToggles.swift
new file mode 100644
index 0000000..07b03d2
--- /dev/null
+++ b/Sources/CloudKitFeatureToggles/CloudKitFeatureToggles.swift
@@ -0,0 +1,3 @@
+struct CloudKitFeatureToggles {
+ var text = "Hello, World!"
+}
diff --git a/Tests/CloudKitFeatureTogglesTests/CloudKitFeatureTogglesTests.swift b/Tests/CloudKitFeatureTogglesTests/CloudKitFeatureTogglesTests.swift
new file mode 100644
index 0000000..c968c5f
--- /dev/null
+++ b/Tests/CloudKitFeatureTogglesTests/CloudKitFeatureTogglesTests.swift
@@ -0,0 +1,15 @@
+import XCTest
+@testable import CloudKitFeatureToggles
+
+final class CloudKitFeatureTogglesTests: XCTestCase {
+ func testExample() {
+ // This is an example of a functional test case.
+ // Use XCTAssert and related functions to verify your tests produce the correct
+ // results.
+ XCTAssertEqual(CloudKitFeatureToggles().text, "Hello, World!")
+ }
+
+ static var allTests = [
+ ("testExample", testExample),
+ ]
+}
diff --git a/Tests/CloudKitFeatureTogglesTests/XCTestManifests.swift b/Tests/CloudKitFeatureTogglesTests/XCTestManifests.swift
new file mode 100644
index 0000000..96aae70
--- /dev/null
+++ b/Tests/CloudKitFeatureTogglesTests/XCTestManifests.swift
@@ -0,0 +1,9 @@
+import XCTest
+
+#if !canImport(ObjectiveC)
+public func allTests() -> [XCTestCaseEntry] {
+ return [
+ testCase(CloudKitFeatureTogglesTests.allTests),
+ ]
+}
+#endif
diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift
new file mode 100644
index 0000000..0518b88
--- /dev/null
+++ b/Tests/LinuxMain.swift
@@ -0,0 +1,7 @@
+import XCTest
+
+import CloudKitFeatureTogglesTests
+
+var tests = [XCTestCaseEntry]()
+tests += CloudKitFeatureTogglesTests.allTests()
+XCTMain(tests)