diff --git a/.gitignore b/.gitignore index 3b29812..5922fda 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ DerivedData/ .swiftpm/config/registries.json .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata .netrc +Package.resolved diff --git a/Sources/Push-API/Push_API.swift b/Sources/Push-API/Push_API.swift deleted file mode 100644 index 10d5187..0000000 --- a/Sources/Push-API/Push_API.swift +++ /dev/null @@ -1,6 +0,0 @@ -public struct Push_API { - public private(set) var text = "Hello, World!" - - public init() { - } -} diff --git a/Tests/Push-APITests/Push_APITests.swift b/Tests/Push-APITests/Push_APITests.swift deleted file mode 100644 index 0d4a15d..0000000 --- a/Tests/Push-APITests/Push_APITests.swift +++ /dev/null @@ -1,11 +0,0 @@ -import XCTest -@testable import Push_API - -final class Push_APITests: 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(Push_API().text, "Hello, World!") - } -}