mirror of
https://github.com/InsanusMokrassar/PlaguPoster.git
synced 2025-12-05 20:45:40 +00:00
9 lines
264 B
Kotlin
9 lines
264 B
Kotlin
package dev.inmo.plaguposter.ratings.selector
|
|
|
|
import korlibs.time.DateTime
|
|
import dev.inmo.plaguposter.posts.models.PostId
|
|
|
|
interface Selector {
|
|
suspend fun take(n: Int = 1, now: DateTime = DateTime.now(), exclude: List<PostId> = emptyList()): List<PostId>
|
|
}
|