Skip to content

Commit

Permalink
fix: repositories in README
Browse files Browse the repository at this point in the history
  • Loading branch information
y9vad9 authored Feb 26, 2024
1 parent 6e0bbf0 commit 934402f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ iterator.forEach { timer -> /* ... */ }
> **Warning** <br>
> `asSequence` is experimental API and needs more considerations about possible misunderstanding of non-laziness way of loading and iterating data at start. You can just use `iterator.toList().asSequence()` or simply opt-in `ExperimentalApi` annotation.
Overall, you can take a look at sources of [PagesIterator](/sdk/src/commonMain/kotlin/io/timemates/sdk/common/pagination/PagesIterator.kt) to get more information.
Overall, you can take a look at sources of [PagesIterator](/sdk/src/commonMain/kotlin/org/timemates/sdk/common/pagination/PagesIterator.kt) to get more information.

## Implementation
> **Warning** <br>
Expand All @@ -67,7 +67,9 @@ Overall, you can take a look at sources of [PagesIterator](/sdk/src/commonMain/k
You can implement sdk in next way:
```kotlin
repositories {
maven("https://maven.timemates.io")
maven("https://maven.timemates.org/releases")
// if you want, you can also use dev builds:
maven("https://maven.timemates.org/dev")
}

dependencies {
Expand Down

0 comments on commit 934402f

Please sign in to comment.