Swift implementation to the awesome Rick and Morty API
For instructions how to add a Swift package to your projects look here:
Apple - Adding package dependencies to your app
Example to get all characters as an array of character struct:
1. Init client:
let rmClient = RMClient()
2. Request array of characters from server
do {
let characters = try await rmClient.character().getAllCharacters()
} catch (let error) {
print(error)
}
For more examples, please refer to the Documentation or visit Test Section
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the repo and create your branch from master.
- If you've added code that should be tested, add tests.
- If you've changed APIs, update the documentation.
- Ensure the test suite passes.
- Issue that pull request!
Distributed under the MIT License. See LICENSE
for more information.