Skip to content

Commit

Permalink
Fix missing ovveride in readme (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr3zee authored May 27, 2024
1 parent 96e4879 commit 6ea1ff0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface AwesomeService : RPC {
```
In your server code define how to respond by simply implementing the service:
```kotlin
class AwesomeServiceImpl : AwesomeService {
class AwesomeServiceImpl(override val coroutineContext: CoroutineContext) : AwesomeService {
override suspend fun getNews(city: String): Flow<String> {
return flow {
emit("Today is 23 degrees!")
Expand Down

0 comments on commit 6ea1ff0

Please sign in to comment.