mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2024-11-16 21:13:47 +00:00
8 lines
227 B
Kotlin
8 lines
227 B
Kotlin
|
package dev.inmo.plaguposter.posts.repo
|
||
|
|
||
|
import dev.inmo.micro_utils.repos.CRUDRepo
|
||
|
import dev.inmo.plaguposter.posts.models.*
|
||
|
|
||
|
interface PostsRepo : CRUDRepo<RegisteredPost, PostId, NewPost>, ReadPostsRepo, WritePostsRepo {
|
||
|
}
|