start adding of posts service

This commit is contained in:
2022-01-08 18:37:53 +06:00
parent bae986d3fe
commit ef372ab520
10 changed files with 69 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
id "com.android.library"
}
apply from: "$mppProjectWithSerializationPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.services.posts.common")
api project(":postssystem.features.common.client")
api project(":postssystem.features.posts.client")
}
}
}
}