-
Notifications
You must be signed in to change notification settings - Fork 738
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrating defer branch to new project structure
- Loading branch information
1 parent
c8aba64
commit 0b563c9
Showing
12 changed files
with
798 additions
and
196 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import Foundation | ||
#if !COCOAPODS | ||
import ApolloAPI | ||
#endif | ||
|
||
struct MultipartResponseDeferParser: MultipartResponseSpecificationParser { | ||
static let protocolSpec: String = "deferSpec=20220824" | ||
|
||
static func parse( | ||
data: Data, | ||
boundary: String, | ||
dataHandler: ((Data) -> Void), | ||
errorHandler: ((Error) -> Void) | ||
) { | ||
// TODO: Will be implemented in #3146 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.