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