core/core/api/src/commonMain/kotlin/dev/inmo/postssystem/core/content/api/ContentRepo.kt

7 lines
257 B
Kotlin

package dev.inmo.postssystem.core.content.api
import dev.inmo.micro_utils.repos.StandardCRUDRepo
import dev.inmo.postssystem.core.content.*
interface ContentRepo : ReadContentRepo, WriteContentRepo, StandardCRUDRepo<RegisteredContent, ContentId, Content>