Skip to content

Commit

Permalink
data모듈
Browse files Browse the repository at this point in the history
 - 불필요한 의존성 제거
  • Loading branch information
oyj7677 committed Sep 4, 2023
1 parent 8dc801b commit daf059b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions github-data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,4 @@ dependencies{
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
implementation("androidx.room:room-runtime:2.5.2")
kapt ("androidx.room:room-compiler:2.5.2")

testImplementation("io.projectreactor:reactor-test")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import androidx.room.Room
import androidx.room.RoomDatabase

@Database(
entities =
[GithubRepoEntity::class],
version = 1
entities = [GithubRepoEntity::class],
version = 1,
exportSchema = false
)
abstract class GithubRepoDatabase: RoomDatabase() {
abstract fun GithubRepoDao(): GithubRepoDao
Expand Down

0 comments on commit daf059b

Please sign in to comment.