Skip to content

Commit

Permalink
Make ClientCertificate init scope public (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhumphreys authored and ianpartridge committed Oct 27, 2018
1 parent d52651e commit 4f6584c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Sources/SwiftyRequest/RestRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -870,4 +870,10 @@ public struct ClientCertificate {
public let name: String
/// The path to the client certificate
public let path: String

/// Initialize a `ClientCertificate` instance
public init(name: String, path: String) {
self.name = name
self.path = path
}
}

0 comments on commit 4f6584c

Please sign in to comment.