commonMain.raven.internal.BrevoEndpoint.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of raven-email-brevo Show documentation
Show all versions of raven-email-brevo Show documentation
An abstraction form sending emails
package raven.internal
internal class BrevoEndpoint(
private val root: String
) {
val sms by lazy { "$root/v3/smtp/email" }
val account by lazy { "$root/v3/account" }
}