1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2773 Tech | Debug, implement account select trace (#1793)

This commit is contained in:
Konstantin Ivanov 2024-11-13 18:56:40 +01:00 committed by GitHub
parent f17d256367
commit ee565a57f0
Signed by: github
GPG key ID: B5690EEEBB952194
12 changed files with 131 additions and 14 deletions

View file

@ -1080,4 +1080,8 @@ class BlockDataRepository(
override suspend fun unsubscribeChat(chat: Id) {
return remote.unsubscribeChat(chat)
}
override suspend fun debugAccountSelectTrace(dir: String): String {
return remote.debugAccountSelectTrace(dir)
}
}

View file

@ -457,4 +457,6 @@ interface BlockRemote {
suspend fun unsubscribeChat(chat: Id)
//endregion
suspend fun debugAccountSelectTrace(dir: String): String
}