Use new selectusers module

This commit is contained in:
Maxime NATUREL 2023-03-15 11:22:14 +01:00 committed by Florian Renaud
parent 24a179eb5c
commit 2bdd528842
8 changed files with 34 additions and 206 deletions

View file

@ -80,6 +80,7 @@ fun DependencyHandlerScope.allFeaturesApi() {
implementation(project(":features:preferences:api"))
implementation(project(":features:createroom:api"))
implementation(project(":features:verifysession:api"))
implementation(project(":features:selectusers:api"))
}
fun DependencyHandlerScope.allFeaturesImpl() {
@ -92,4 +93,5 @@ fun DependencyHandlerScope.allFeaturesImpl() {
implementation(project(":features:preferences:impl"))
implementation(project(":features:createroom:impl"))
implementation(project(":features:verifysession:impl"))
implementation(project(":features:selectusers:impl"))
}