Add @Sendable annotation code action
good first issuecode action
### Description
Add `@Sendable` to closures and function types for concurrency safety.
**Before:**
```swift
func perform(callback: @escaping () -> Void) {
Task {
callback()
}
}
```
**After:**
```swift
func perform(callback: @Sendable @escaping () -> Void) {
Task {
callback()
}
}
```
关闭于 2026-03-10 1 条评论