10 lines
323 B
Swift
10 lines
323 B
Swift
import Foundation
|
|
@testable import WMF
|
|
|
|
extension RemoteNotificationsModelController {
|
|
static func temporaryModelController() throws -> RemoteNotificationsModelController {
|
|
let url = URL(fileURLWithPath: WMFRandomTemporaryPath())
|
|
return try RemoteNotificationsModelController(containerURL: url)
|
|
}
|
|
}
|