Skip to content

Commit

Permalink
Merge pull request #1 from vox-humana/main
Browse files Browse the repository at this point in the history
Remove PulseCore dependency
  • Loading branch information
kean authored Nov 24, 2021
2 parents 2e95dc7 + 68f68bc commit afdd05c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 22 deletions.
18 changes: 0 additions & 18 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,6 @@
"revision": "352066f1a29108548386487ae083b4115e94c1fb",
"version": "2.5.4"
}
},
{
"package": "Pulse",
"repositoryURL": "https://github.com/kean/Pulse",
"state": {
"branch": null,
"revision": "f944ac0095f5a844501015fb5ad45411a41c133d",
"version": "0.20.0"
}
},
{
"package": "swift-log",
"repositoryURL": "https://github.com/apple/swift-log.git",
"state": {
"branch": null,
"revision": "5d66f7ba25daf4f94100e7022febf3c75e37a6c7",
"version": "1.4.2"
}
}
]
},
Expand Down
5 changes: 2 additions & 3 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ let package = Package(
.library(name: "APIClient", targets: ["APIClient"]),
],
dependencies: [
.package(url: "https://github.com/WeTransfer/Mocker.git", from: "2.3.0"),
.package(url: "https://github.com/kean/Pulse", from: "0.20.0")
.package(url: "https://github.com/WeTransfer/Mocker.git", from: "2.3.0")
],
targets: [
.target(name: "APIClient", dependencies: [.product(name: "PulseCore", package: "Pulse")]),
.target(name: "APIClient"),
.testTarget(name: "APIClientTests", dependencies: ["APIClient", "Mocker"], resources: [.process("Resources")]),
]
)
1 change: 0 additions & 1 deletion Sources/APIClient/APIClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
// Copyright (c) 2021 Alexander Grebenyuk (github.com/kean).

import Foundation
import PulseCore

public protocol APIClientDelegate {
func client(_ client: APIClient, willSendRequest request: inout URLRequest)
Expand Down

0 comments on commit afdd05c

Please sign in to comment.