Updated on 2026-08-14
This commit is contained in:
parent
2f2d6755f9
commit
5f4dfefc2e
20 changed files with 190 additions and 311 deletions
|
|
@ -21,4 +21,10 @@ abstract class SingleAccountListSupplier(
|
|||
params = SingleAccountListProducer.Params(userWalletId = userWalletId),
|
||||
)
|
||||
}
|
||||
|
||||
suspend fun getSyncOrNull(userWalletId: UserWalletId): AccountList? {
|
||||
return getSyncOrNull(
|
||||
params = SingleAccountListProducer.Params(userWalletId = userWalletId),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
@ -20,4 +20,9 @@ abstract class SingleAccountStatusListSupplier(
|
|||
val params = SingleAccountStatusListProducer.Params(userWalletId)
|
||||
return this.invoke(params)
|
||||
}
|
||||
|
||||
suspend fun getSyncOrNull(userWalletId: UserWalletId): AccountStatusList? {
|
||||
val params = SingleAccountStatusListProducer.Params(userWalletId)
|
||||
return this.getSyncOrNull(params)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue