com.lightningkite.lightningserver.sms.ConsoleSMSClient.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server-core Show documentation
Show all versions of server-core Show documentation
A set of tools to fill in/replace what Ktor is lacking in.
The newest version!
package com.lightningkite.lightningserver.sms
/**
* A concrete implementation of SMSClient that will simply print out everything to the console
* This is useful for local development
*/
object ConsoleSMSClient : SMSClient {
override suspend fun send(to: String, message: String) {
println("SMS to $to:")
println(message)
println()
}
}