swift-atproto
swift-atproto 是一个 atproto 库。
安装
SwiftPM
将 SwiftAtprotoUtil
添加为依赖项
let package = Package(
// name, platforms, products, etc.
dependencies: [
// other dependencies
.package(url: "https://github.com/nnabeyang/swift-atproto", from: "0.0.0"),
],
targets: [
.executableTarget(name: "<executable-target-name>", dependencies: [
// other dependencies
.product(name: "SwiftAtprotoUtil", package: "swift-atproto"),
]),
// other targets
]
)
CocoaPods
在您的 Podfile 中添加以下内容
pod 'SwiftAtproto'
许可证
swift-atproto在MIT许可证下发布,参见LICENSE文件。