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

7 lines
257 B
Kotlin
Raw Normal View History

2020-11-25 08:08:45 +00:00
package dev.inmo.postssystem.core.content.api
2019-11-04 07:42:15 +00:00
2020-11-27 08:49:02 +00:00
import dev.inmo.micro_utils.repos.StandardCRUDRepo
import dev.inmo.postssystem.core.content.*
interface ContentRepo : ReadContentRepo, WriteContentRepo, StandardCRUDRepo<RegisteredContent, ContentId, Content>