mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-04 16:09:31 +00:00
13 lines
308 B
Swift
13 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
|
|
}
|
|
}
|