fun helloPubSub()

in functions/src/main/kotlin/EventExample.kt [10:13]


    fun helloPubSub(message: PubSubMessage) {
        val data = String(Base64.getDecoder().decode(message.data))
        log.info(data)
    }