добавлен binary

This commit is contained in:
alexander
2021-11-27 17:02:14 +00:00
parent ad72617cf4
commit e3b0cc1357
9 changed files with 79 additions and 1 deletions
features/content/binary
client
common
build.gradle
src
commonMain
kotkin
dev.inmo.postsystem.features.content.binary.common
main
server
gradle.propertiessettings.gradle

@ -0,0 +1,17 @@
plugins {
id "org.jetbrains.kotlin.multiplatform"
id "org.jetbrains.kotlin.plugin.serialization"
}
apply from: "$mppJavaProjectPresetPath"
kotlin {
sourceSets {
commonMain {
dependencies {
api project(":postssystem.features.content.binary.common")
api project(":postssystem.features.common.server")
}
}
}
}