Files
swift-aws-lambda-runtime/Sources
Adam Fowler b3fbee6b58 Add SendableMetatype conformance (#518)
Add SendableMetatype conformance to StreamingLambdaHandler

### Motivation:

Swift 6.2 introduced new protocol SendableMetatype for Types that are
Sendable

### Modifications:

Added `_Lambda_SendableMetatype` typealias for SendableMetatype in Swift
6.2

and 

```swift
public protocol StreamingLambdaHandler: _Lambda_SendableMetatype {
```

### Result:

No more compile warnings
2025-06-28 19:09:51 +02:00
..