wsclient/src/main/kotlin/com/cubetiqs/wsclient/StockClient.kt

7 lines
143 B
Kotlin

package com.cubetiqs.wsclient
import reactor.core.publisher.Flux
interface StockClient {
fun priceFor(symbol: String): Flux<StockPrice>
}