AppRepository

interface AppRepository

Functions

getAllApps
Link copied to clipboard
abstract suspend fun getAllApps(): Completion<List<App>>
getAppsByUrl
Link copied to clipboard
abstract suspend fun getAppsByUrl(url: String, references: List<String>): Completion<List<App>>
getLocationBasedApps
Link copied to clipboard
abstract suspend fun getLocationBasedApps(latitude: Double, longitude: Double): Completion<List<App>>
getUrlByAppId
Link copied to clipboard
abstract suspend fun getUrlByAppId(appId: String): Completion<String?>

Inheritors

AppRepositoryImpl
Link copied to clipboard