fix: better structure and example Quotes is changed to real name

This commit is contained in:
emmavdwa 2024-07-23 20:57:54 +02:00
parent bfd19884a7
commit c8a01582eb
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
package be.re.writand.data.repos
package be.re.writand.data.repos.projects
import be.re.writand.data.local.models.Project
import kotlinx.coroutines.flow.Flow

View file

@ -1,4 +1,4 @@
package be.re.writand.data.repos
package be.re.writand.data.repos.projects
import be.re.writand.data.local.db.ProjectsDao
import be.re.writand.data.local.models.Project

View file

@ -22,7 +22,7 @@ class DatabaseModule {
return ProjectsDatabase.getInstance(context)
}
@Provides
fun provideQuotesDao(projectsDatabase: ProjectsDatabase): ProjectsDao {
fun provideProjectsDao(projectsDatabase: ProjectsDatabase): ProjectsDao {
return projectsDatabase.projectsDao()
}