Files
andros d3a6a0ed3e Initial commit: OrgSocialKit library
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
2026-04-18 20:03:46 +02:00

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
}
}