michaelcarrano/detective-droid

View on GitHub
app/src/main/java/com/michaelcarrano/detectivedroid/data/AppRepository.kt

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
package com.michaelcarrano.detectivedroid.data

import com.michaelcarrano.detectivedroid.data.model.AppEntity
import io.reactivex.Single

interface AppRepository {
    fun getApplications(): Single<List<AppEntity>>
}