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
242 B
Swift
12 lines
242 B
Swift
import Foundation
|
|
|
|
public struct OrgSocialGroup: Sendable, Equatable {
|
|
public let name: String
|
|
public let relayURL: URL
|
|
|
|
public init(name: String, relayURL: URL) {
|
|
self.name = name
|
|
self.relayURL = relayURL
|
|
}
|
|
}
|