2023-12-12 00:53:43 +07:00

10 lines
252 B
Kotlin

package ru.samsung.smartintercom.di
import ru.samsung.smartintercom.domain.auth.AuthRepository
import ru.samsung.smartintercom.domain.call.CallRepository
interface AppProvides {
fun authRepo(): AuthRepository
fun callRepo(): CallRepository
}