Extract fetchDetailsForEvent and use coroutineDispatchers.io

This commit is contained in:
ganfra 2023-06-12 20:23:58 +02:00
parent afb3e33f84
commit 92adef5384
6 changed files with 26 additions and 21 deletions

View file

@ -42,4 +42,6 @@ interface MatrixTimeline {
suspend fun editMessage(originalEventId: EventId, message: String): Result<Unit>
suspend fun replyMessage(inReplyToEventId: EventId, message: String): Result<Unit>
suspend fun fetchDetailsForEvent(eventId: EventId): Result<Unit>
}