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

com.greenapi.client.examples.WebhookExample Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.greenapi.client.examples;

import com.greenapi.client.pkg.api.webhook.WebhookConsumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * Use "main" instead "webhookExample" in real code.
 */
@SpringBootApplication
public class WebhookExample {
    public static void webhookExample(String[] args) {
        var context = SpringApplication.run(WebhookExample.class, args);

        var webhookConsumer = context.getBean(WebhookConsumer.class);
        webhookConsumer.start(System.out::println);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy