core/core/ktor/common/src/commonMain/kotlin/dev/inmo/postssystem/core/ktor/ContentRoutes.kt

14 lines
457 B
Kotlin

package dev.inmo.postssystem.core.ktor
const val contentRootRoute = "content"
const val getContentsIdsRoute = "getContentsIds"
const val getContentByIdRoute = "getContentById"
const val getContentByPaginationRoute = "getContentByPagination"
const val registerContentRoute = "registerContent"
const val deleteContentRoute = "deleteContent"
const val contentCreatedFlowRoute = "contentCreatedFlow"
const val contentDeletedFlowRoute = "contentDeletedFlow"