[Architecture] split all feature modules to api/impl

This commit is contained in:
ganfra 2023-03-08 16:13:45 +01:00
parent 84bfb14bd9
commit bc9f3b69cc
214 changed files with 626 additions and 1090 deletions

View file

@ -60,11 +60,11 @@ fun DependencyHandlerScope.allLibraries() {
}
fun DependencyHandlerScope.allFeatures() {
implementation(project(":features:onboarding"))
implementation(project(":features:login"))
implementation(project(":features:logout"))
implementation(project(":features:roomlist"))
implementation(project(":features:onboarding:impl"))
implementation(project(":features:login:impl"))
implementation(project(":features:logout:impl"))
implementation(project(":features:roomlist:impl"))
implementation(project(":features:messages:impl"))
implementation(project(":features:rageshake"))
implementation(project(":features:preferences"))
implementation(project(":features:rageshake:impl"))
implementation(project(":features:preferences:impl"))
}