Set visibility of interface implementations to internal

This commit is contained in:
MM20
2022-01-17 00:16:00 +01:00
parent a71efdf4b2
commit d85da0361d
14 changed files with 16 additions and 18 deletions
@@ -27,7 +27,7 @@ interface CalendarRepository {
suspend fun getCalendars(): List<UserCalendar>
}
class CalendarRepositoryImpl(
internal class CalendarRepositoryImpl(
private val context: Context,
hiddenItemsRepository: HiddenItemsRepository
) : CalendarRepository, KoinComponent {