Conform an entity to `Sendable`

This commit is contained in:
woxtu 2023-04-14 21:15:09 +09:00
parent b81ceb926c
commit 049059b47d
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ extension Mastodon.Entity {
/// 2022/5/16
/// # Reference
/// [Document](TBD)
public class FamiliarFollowers: Codable, Sendable {
public final class FamiliarFollowers: Codable, Sendable {
public let id: Mastodon.Entity.Account.ID
public let accounts: [Mastodon.Entity.Account]
}