d3a6a0ed3e
Pure Swift library for iOS (iOS 17+) to interact with Org Social, a decentralized social network based on plain-text social.org files. Features: - FeedFetcher: async download of social.org content - OrgSocialParser: full parser for profile headers and posts - TimelineFetcher: concurrent multi-feed timeline with relay support - PostWriter: create and upload posts to vhost - 43 tests across 8 suites, all passing
12 lines
225 B
Swift
12 lines
225 B
Swift
import Foundation
|
|
|
|
public struct OrgSocialFollow: Sendable, Equatable {
|
|
public let name: String?
|
|
public let url: URL
|
|
|
|
public init(name: String?, url: URL) {
|
|
self.name = name
|
|
self.url = url
|
|
}
|
|
}
|