Skip to content

Commit d8bd795

Browse files
committed
remove sendable requirement on input and output type
1 parent 6b8684a commit d8bd795

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/OpenAPILambda.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import HTTPTypes
2121
/// A Lambda function implemented with a OpenAPI server (implementing `APIProtocol` from Swift OpenAPIRuntime)
2222
public protocol OpenAPILambda: Sendable {
2323

24-
associatedtype Event: Decodable, Sendable
25-
associatedtype Output: Encodable, Sendable
24+
associatedtype Event: Decodable
25+
associatedtype Output: Encodable
2626

2727
/// Initialize application.
2828
///

0 commit comments

Comments
 (0)