commonMain.com.vonage.clientcore.Greeting.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clientcore-jvm Show documentation
Show all versions of clientcore-jvm Show documentation
This package is part of the Vonage Client SDK and is meant only as a dependency for Voice, Chat, and Combined packages.
For more information, documentation, and code samples, please visit the Vonage Developer Portal.
package com.vonage.clientcore
class Greeting {
fun greeting(): String {
return "Hello"
}
companion object {
fun italianGreeting(): String = "Ciao!"
}
}