mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2025-12-06 04:55:41 +00:00
8 lines
246 B
Kotlin
8 lines
246 B
Kotlin
package dev.inmo.plaguposter.ratings.source.repos
|
|
|
|
import dev.inmo.micro_utils.repos.KeyValueRepo
|
|
import dev.inmo.plaguposter.posts.models.PostId
|
|
import dev.inmo.tgbotapi.types.PollId
|
|
|
|
interface PollsToPostsIdsRepo : KeyValueRepo<PollId, PostId>
|