All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightningkite.lightningserver.sms.ConsoleSMSClient.kt Maven / Gradle / Ivy

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()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy