Skip to content

Commit

Permalink
[CHORE/#91] 컨플릭 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
boiledeggg committed Jul 16, 2024
1 parent 1ce7179 commit 5717f6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 2 additions & 4 deletions app/src/main/java/com/terning/point/di/RepositoryModule.kt
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
package com.terning.point.di

import com.terning.data.repositoryimpl.MockRepositoryImpl
import com.terning.data.repositoryimpl.CalendarRepositoryImpl
import com.terning.domain.repository.MockRepository
import com.terning.domain.repository.CalendarRepository
import com.terning.data.repositoryimpl.AuthRepositoryImpl
import com.terning.data.repositoryimpl.CalendarRepositoryImpl
import com.terning.data.repositoryimpl.SearchViewsRepositoryImpl
import com.terning.data.repositoryimpl.TokenRepositoryImpl
import com.terning.domain.repository.AuthRepository
import com.terning.domain.repository.CalendarRepository
import com.terning.domain.repository.SearchRepository
import com.terning.domain.repository.TokenRepository
import dagger.Binds
Expand Down
5 changes: 2 additions & 3 deletions app/src/main/java/com/terning/point/di/ServiceModule.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package com.terning.point.di

import com.terning.data.service.AuthService
import com.terning.data.service.CalendarService
import com.terning.data.service.SearchService
import com.terning.point.di.qualifier.JWT
import com.terning.data.service.CalendarService
import com.terning.point.di.qualifier.OPEN
import dagger.Module
import dagger.Provides
import dagger.hilt.InstallIn
Expand All @@ -28,7 +27,7 @@ object ServiceModule {

@Provides
@Singleton
fun provideCalendarService(@OPEN retrofit: Retrofit): CalendarService =
fun provideCalendarService(@JWT retrofit: Retrofit): CalendarService =
retrofit.create(CalendarService::class.java)

}

0 comments on commit 5717f6e

Please sign in to comment.