refactor: core:data -> core:data:client
This commit is contained in:
parent
4cdb9a305c
commit
e7caeca356
21 changed files with 162 additions and 78 deletions
21
core/data/server/build.gradle.kts
Normal file
21
core/data/server/build.gradle.kts
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
plugins {
|
||||
alias(libs.plugins.kotlinJvm)
|
||||
alias(libs.plugins.kotlinSerialization)
|
||||
}
|
||||
|
||||
kotlin {
|
||||
compilerOptions {
|
||||
freeCompilerArgs.add("-opt-in=kotlin.time.ExperimentalTime")
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(libs.okio)
|
||||
implementation(libs.koin.core)
|
||||
implementation(libs.kotlinx.coroutines.core)
|
||||
implementation(libs.kotlinx.datetime)
|
||||
|
||||
api(projects.core.data)
|
||||
implementation(projects.core)
|
||||
implementation(projects.core.room)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue