Skip to content

Commit

Permalink
Merge pull request #23 from strvcom/fix/public-endpointRequest-init
Browse files Browse the repository at this point in the history
fix: EndpointRequest's initializer method made public
  • Loading branch information
gajddo00 authored Dec 16, 2022
2 parents 5735e70 + d16e1b2 commit 483200b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Networking/Core/EndpointRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public struct EndpointRequest: Identifiable {
public let sessionId: String
public let endpoint: Requestable

init(_ endpoint: Requestable, sessionId: String) {
public init(_ endpoint: Requestable, sessionId: String) {
id = "\(endpoint.identifier)_\(Date().timeIntervalSince1970)"
self.endpoint = endpoint
self.sessionId = sessionId
Expand Down

0 comments on commit 483200b

Please sign in to comment.