[Architecture] use impl instead of implementation

This commit is contained in:
ganfra 2023-03-02 15:49:20 +01:00
parent 5db0008116
commit a1a9ae1f28
23 changed files with 33 additions and 33 deletions

View file

@ -19,8 +19,8 @@ package io.element.android.samples.minimal
import androidx.compose.runtime.Composable
import androidx.compose.runtime.remember
import androidx.compose.ui.Modifier
import io.element.android.features.login.implementation.root.LoginRootPresenter
import io.element.android.features.login.implementation.root.LoginRootScreen
import io.element.android.features.login.impl.root.LoginRootPresenter
import io.element.android.features.login.impl.root.LoginRootScreen
import io.element.android.libraries.matrix.auth.MatrixAuthenticationService
class LoginScreen(private val authenticationService: MatrixAuthenticationService) {