Skip to content

Commit 0f46e64

Browse files
committed
Rename to Get
1 parent 71aeac4 commit 0f46e64

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
import PackageDescription
55

66
let package = Package(
7-
name: "APIClient",
7+
name: "Get",
88
platforms: [.iOS(.v15), .macCatalyst(.v15), .macOS(.v12), .watchOS(.v8), .tvOS(.v15)],
99
products: [
10-
.library(name: "APIClient", targets: ["APIClient"]),
10+
.library(name: "Get", targets: ["Get"]),
1111
],
1212
dependencies: [
1313
.package(url: "https://github.com/WeTransfer/Mocker.git", from: "2.3.0")
1414
],
1515
targets: [
16-
.target(name: "APIClient"),
17-
.testTarget(name: "APIClientTests", dependencies: ["APIClient", "Mocker"], resources: [.process("Resources")]),
16+
.target(name: "Get"),
17+
.testTarget(name: "GetTests", dependencies: ["Get", "Mocker"], resources: [.process("Resources")]),
1818
]
1919
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import XCTest
66
import Mocker
7-
@testable import APIClient
7+
@testable import Get
88

99
final class APIClientTests: XCTestCase {
1010
var client: APIClient!
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Copyright (c) 2021 Alexander Grebenyuk (github.com/kean).
44

55
import Foundation
6-
import APIClient
6+
import Get
77

88
// An example of an API definition. Feel free to use any other method for
99
// organizing the resources.

0 commit comments

Comments
 (0)