add TextContent

This commit is contained in:
2021-11-24 20:32:21 +06:00
parent 58b7e973be
commit 5d54fa274a
12 changed files with 85 additions and 0 deletions
client
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
client
features/content/text
client
common
build.gradle
src
commonMain
kotlin
dev
inmo
postssystem
main
server
server
build.gradle
src
main
java
dev
inmo
postssystem
server
settings.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.text.common")
api project(":postssystem.features.common.server")
}
}
}
}