Skip to content

Commit

Permalink
make JobData init public
Browse files Browse the repository at this point in the history
  • Loading branch information
jdmcd committed Dec 11, 2018
1 parent 400a797 commit a7d3eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Jobs/JobData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public struct JobData: Codable {
/// - key: See `key`
/// - data: See `data`
/// - maxRetryCount: See `maxRetryCount`
init(key: String, data: Job, maxRetryCount: Int) {
public init(key: String, data: Job, maxRetryCount: Int) {
self.key = key
self.data = data
self.maxRetryCount = maxRetryCount
Expand Down

0 comments on commit a7d3eb6

Please sign in to comment.