Attention:
This repo is a mirror of a subdirectory in the Arri RPC monorepo. It only exists to facilitate distribution for the Swift Package Manager. To submit an issue or make a PR please go to the official Arri repo.
This library is needed to use the Swift code generated by Arri RPC
The installed version should match the version of your Arri CLI. Use arri version to check.
Add the arri-client-swift git repo to your package dependencies
.package(
url: "https://github.com/modiimedia/arri-client-swift.git",
from: "<your-arri-cli-version>"
)and add ArriClient as a dependency to your target
.target(
name: "MyApp",
dependencies: [
.product(name: "ArriClient", package: "arri-client-swift")
]
)