diff --git a/Src/PuissanceQuatreLibrary/.gitignore b/Src/PuissanceQuatreLibrary/.gitignore deleted file mode 100644 index 3b29812..0000000 --- a/Src/PuissanceQuatreLibrary/.gitignore +++ /dev/null @@ -1,9 +0,0 @@ -.DS_Store -/.build -/Packages -/*.xcodeproj -xcuserdata/ -DerivedData/ -.swiftpm/config/registries.json -.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -.netrc diff --git a/Src/PuissanceQuatreLibrary/Package.swift b/Src/PuissanceQuatreLibrary/Package.swift deleted file mode 100644 index c08e2ab..0000000 --- a/Src/PuissanceQuatreLibrary/Package.swift +++ /dev/null @@ -1,28 +0,0 @@ -// swift-tools-version: 5.7 -// The swift-tools-version declares the minimum version of Swift required to build this package. - -import PackageDescription - -let package = Package( - name: "PuissanceQuatreLibrary", - products: [ - // Products define the executables and libraries a package produces, and make them visible to other packages. - .library( - name: "PuissanceQuatreLibrary", - targets: ["PuissanceQuatreLibrary"]), - ], - 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 this package depends on. - .target( - name: "PuissanceQuatreLibrary", - dependencies: []), - .testTarget( - name: "PuissanceQuatreLibraryTests", - dependencies: ["PuissanceQuatreLibrary"]), - ] -) diff --git a/Src/PuissanceQuatreLibrary/README.md b/Src/PuissanceQuatreLibrary/README.md deleted file mode 100644 index bdb1c41..0000000 --- a/Src/PuissanceQuatreLibrary/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# PuissanceQuatreLibrary - -A description of this package. diff --git a/Src/PuissanceQuatreLibrary/Sources/PuissanceQuatreLibrary/PuissanceQuatreLibrary.swift b/Src/PuissanceQuatreLibrary/Sources/PuissanceQuatreLibrary/PuissanceQuatreLibrary.swift deleted file mode 100644 index 49e5b90..0000000 --- a/Src/PuissanceQuatreLibrary/Sources/PuissanceQuatreLibrary/PuissanceQuatreLibrary.swift +++ /dev/null @@ -1,6 +0,0 @@ -public struct PuissanceQuatreLibrary { - public private(set) var text = "Hello, World!" - - public init() { - } -} diff --git a/Src/PuissanceQuatreLibrary/Tests/PuissanceQuatreLibraryTests/PuissanceQuatreLibraryTests.swift b/Src/PuissanceQuatreLibrary/Tests/PuissanceQuatreLibraryTests/PuissanceQuatreLibraryTests.swift deleted file mode 100644 index baddc72..0000000 --- a/Src/PuissanceQuatreLibrary/Tests/PuissanceQuatreLibraryTests/PuissanceQuatreLibraryTests.swift +++ /dev/null @@ -1,11 +0,0 @@ -import XCTest -@testable import PuissanceQuatreLibrary - -final class PuissanceQuatreLibraryTests: XCTestCase { - func testExample() throws { - // This is an example of a functional test case. - // Use XCTAssert and related functions to verify your tests produce the correct - // results. - XCTAssertEqual(PuissanceQuatreLibrary().text, "Hello, World!") - } -}