fix (Model) - removeLibrary

main
DJYohann 2 years ago
parent 1ce8086055
commit 5b4ae7dc3a

@ -1,9 +0,0 @@
.DS_Store
/.build
/Packages
/*.xcodeproj
xcuserdata/
DerivedData/
.swiftpm/config/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc

@ -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"]),
]
)

@ -1,3 +0,0 @@
# PuissanceQuatreLibrary
A description of this package.

@ -1,6 +0,0 @@
public struct PuissanceQuatreLibrary {
public private(set) var text = "Hello, World!"
public init() {
}
}

@ -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!")
}
}
Loading…
Cancel
Save