[Setup] DocC #13

Merged
javier merged 14 commits from setup/docc into main 2023-04-24 15:07:22 +00:00
Showing only changes of commit 0927f05238 - Show all commits

View File

@ -1,6 +1,13 @@
<center style="margin: 48px 96px;">
<picture>
<source srcset="imgs/amiiboservice-logo-dark.svg" media="(prefers-color-scheme: dark)">
<img src="imgs/amiiboservice-logo-light.svg" alt="Shows the hand-drawn AmiiboService package logo centered in the page.">
</picture>
</center>
# AmiiboService: Amiibo API service written in Swift # AmiiboService: Amiibo API service written in Swift
This package contains a ready-to-use service that can retrieve data as decoded models/entities from any of the [Amiibo API](https://www.amiiboapi.com) available endpoints. Ready-to-use service that retrieves data as decoded models from any of the [Amiibo API](https://www.amiiboapi.com) available endpoints.
## Installation ## Installation
@ -29,11 +36,11 @@ Then it is required to add the package to your target, like this:
```swift ```swift
targets: [ targets: [
.target( .target(
... // ...
dependencies: [ dependencies: [
.product(name: "AmiiboService", package: "amiibo-service") .product(name: "AmiiboService", package: "amiibo-service")
], ],
... // ...
), ),
] ]
``` ```