From b20f15366c5237fe002c92c94df4360fb1d04577 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Sat, 7 Sep 2024 08:40:54 +0200 Subject: [PATCH] Initial Commit --- .gitignore | 8 +++++++ Package.swift | 24 +++++++++++++++++++++ Sources/amiibo-api/amiibo_api.swift | 2 ++ Tests/amiibo-apiTests/amiibo_apiTests.swift | 6 ++++++ 4 files changed, 40 insertions(+) create mode 100644 .gitignore create mode 100644 Package.swift create mode 100644 Sources/amiibo-api/amiibo_api.swift create mode 100644 Tests/amiibo-apiTests/amiibo_apiTests.swift diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0023a53 --- /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 index 0000000..dc86716 --- /dev/null +++ b/Package.swift @@ -0,0 +1,24 @@ +// swift-tools-version: 6.0 +// The swift-tools-version declares the minimum version of Swift required to build this package. + +import PackageDescription + +let package = Package( + name: "amiibo-api", + products: [ + // Products define the executables and libraries a package produces, making them visible to other packages. + .library( + name: "amiibo-api", + targets: ["amiibo-api"]), + ], + 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: "amiibo-api"), + .testTarget( + name: "amiibo-apiTests", + dependencies: ["amiibo-api"] + ), + ] +) diff --git a/Sources/amiibo-api/amiibo_api.swift b/Sources/amiibo-api/amiibo_api.swift new file mode 100644 index 0000000..08b22b8 --- /dev/null +++ b/Sources/amiibo-api/amiibo_api.swift @@ -0,0 +1,2 @@ +// The Swift Programming Language +// https://docs.swift.org/swift-book diff --git a/Tests/amiibo-apiTests/amiibo_apiTests.swift b/Tests/amiibo-apiTests/amiibo_apiTests.swift new file mode 100644 index 0000000..9089a17 --- /dev/null +++ b/Tests/amiibo-apiTests/amiibo_apiTests.swift @@ -0,0 +1,6 @@ +import Testing +@testable import amiibo_api + +@Test func example() async throws { + // Write your test here and use APIs like `#expect(...)` to check expected conditions. +}