money-module/src/main/kotlin/com/cubetiqs/money/MoneyExchangeAdapter.kt

5 lines
104 B
Kotlin

package com.cubetiqs.money
interface MoneyExchangeAdapter {
fun getRate(currency: String): Double
}