com.antonioaltieri.telegram.botapi.MessageHandler Maven / Gradle / Ivy
package com.antonioaltieri.telegram.botapi;
import com.antonioaltieri.telegram.botapi.types.Message;
import java.lang.annotation.*;
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MessageHandler {
Message.Type[] contentTypes() default Message.Type.TEXT;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy