mirror of
https://github.com/metabolist/metatext
synced 2024-12-20 22:33:54 +01:00
14 lines
315 B
Swift
14 lines
315 B
Swift
// Copyright © 2020 Metabolist. All rights reserved.
|
|
|
|
import Foundation
|
|
|
|
public extension URLSessionConfiguration {
|
|
static var stubbing: URLSessionConfiguration {
|
|
let configuration = Self.default
|
|
|
|
configuration.protocolClasses = [StubbingURLProtocol.self]
|
|
|
|
return configuration
|
|
}
|
|
}
|