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

ru.pocketbyte.locolaser.ConfigResourceBuilder+GoogleSheet.kt Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package ru.pocketbyte.locolaser

import ru.pocketbyte.locolaser.config.ResourcesSetConfigBuilder
import ru.pocketbyte.locolaser.google.GoogleSheetResourcesConfigBuilder

/**
 * Create and configure Google Sheet resources config.
 */
fun ResourcesSetConfigBuilder.googleSheet(action: GoogleSheetResourcesConfigBuilder.() -> Unit) {
    add(GoogleSheetResourcesConfigBuilder(), action)
}

/**
 * Create and configure Google Sheet resources config.
 */
@Deprecated(
    message = "This extension is deprecated. Use `googleSheet` instead.",
    replaceWith = ReplaceWith("googleSheet(action)")
)
fun ResourcesSetConfigBuilder.googlesheet(action: GoogleSheetResourcesConfigBuilder.() -> Unit) {
    add(GoogleSheetResourcesConfigBuilder(), action)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy