swift-atproto
swift-atproto is a atproto library.
Installation
SwiftPM
Add the SwiftAtprotoUtil
as a dependency:
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
Add the following to your Podfile:
pod 'SwiftAtproto'
License
swift-atproto is published under the MIT License, see LICENSE.