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