Make APICall.init public.

This commit is contained in:
Brent Simmons 2017-12-10 14:03:35 -08:00
parent 89a74077d9
commit 1d956c619d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ public struct APICall {
private let delegate: APICallDelegate
private static var incrementingIdentifier = 0
init(provider: WebServiceProvider, methodName: String, delegate: APICallDelegate) {
public init(provider: WebServiceProvider, methodName: String, delegate: APICallDelegate) {
self.provider = provider
self.methodName = methodName