Commit acafee16 authored by Filipe de Lima Brito's avatar Filipe de Lima Brito

Add SpotlightRepository.kt

parent 9663ca95
package chat.rocket.core.repositories
import chat.rocket.core.SortDirection
import chat.rocket.core.models.Spotlight
import io.reactivex.Flowable
interface SpotlightRepository {
fun getSuggestionsFor(term: String, direction: SortDirection, limit: Int): Flowable<List<Spotlight>>
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment