From d64b25d8854a5f422ef1ce9f060476e72763c2a7 Mon Sep 17 00:00:00 2001 From: Thomas Rademaker Date: Mon, 06 Oct 2025 14:56:22 +0000 Subject: [PATCH] Initial Commit --- .gitignore | 8 ++++++++ Package.swift | 26 ++++++++++++++++++++++++++ Sources/CoreATProtocol/CoreATProtocol.swift | 2 ++ Tests/CoreATProtocolTests/CoreATProtocolTests.swift | 6 ++++++ 4 file(s) changed, 42 insertion(s)(+), 0 deletion(s)(-) diff --git a/.gitignore b/.gitignore new file mode 100644 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.DS_Store +/.build +/Packages +xcuserdata/ +DerivedData/ +.swiftpm/configuration/registries.json +.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata +.netrc diff --git a/Package.swift b/Package.swift new file mode 100644 --- /dev/null +++ b/Package.swift @@ -0,0 +1,26 @@ +// swift-tools-version: 6.2 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "CoreATProtocol", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "CoreATProtocol", + targets: ["CoreATProtocol"] + ), + ], + targets: [ + // Targets are the basic building blocks of a package, defining a module or a test suite. + // Targets can depend on other targets in this package and products from dependencies. + .target( + name: "CoreATProtocol" + ), + .testTarget( + name: "CoreATProtocolTests", + dependencies: ["CoreATProtocol"] + ), + ] +) diff --git a/Sources/CoreATProtocol/CoreATProtocol.swift b/Sources/CoreATProtocol/CoreATProtocol.swift new file mode 100644 --- /dev/null +++ b/Sources/CoreATProtocol/CoreATProtocol.swift @@ -0,0 +1,2 @@ +// The Swift Programming Language +// https://docs.swift.org/swift-book diff --git a/Tests/CoreATProtocolTests/CoreATProtocolTests.swift b/Tests/CoreATProtocolTests/CoreATProtocolTests.swift new file mode 100644 --- /dev/null +++ b/Tests/CoreATProtocolTests/CoreATProtocolTests.swift @@ -0,0 +1,6 @@ +import Testing +@testable import CoreATProtocol + +@Test func example() async throws { + // Write your test here and use APIs like `#expect(...)` to check expected conditions. +} -- tangled.sh