SauceNaoAPI/src/main/kotlin/com/github/insanusmokrassar/SauceNaoAPI/Launcher.kt

17 lines
328 B
Kotlin
Raw Normal View History

2019-02-20 12:18:01 +00:00
package com.github.insanusmokrassar.SauceNaoAPI
2019-08-19 08:13:43 +00:00
import kotlinx.coroutines.*
2019-02-20 12:18:01 +00:00
fun main(vararg args: String) {
val (key, requestUrl) = args
2019-02-20 12:18:01 +00:00
runBlocking {
val api = SauceNaoAPI(key, scope = GlobalScope)
2019-08-19 08:13:43 +00:00
api.use {
println(
it.request(requestUrl)
)
2019-02-20 12:18:01 +00:00
}
}
}