org.telegram.telegrambots.webhook.starter.AfterBotRegistration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegrambots-springboot-webhook-starter Show documentation
Show all versions of telegrambots-springboot-webhook-starter Show documentation
Easy to use library to create Telegram Bots
package org.telegram.telegrambots.webhook.starter;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicated that the Method of a Class extending {@link TelegramBotsSpringWebhookApplication} will be called after the bot was registered
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface AfterBotRegistration {}