Files
TeleJ/event-handlers-annotations/src/main/java/hdvtdev/telegram/handler/annotations/BotCommand.java

18 lines
402 B
Java
Raw Normal View History

2025-11-03 21:16:02 +03:00
package hdvtdev.telegram.handler.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.SOURCE)
public @interface BotCommand {
String name() default "";
String description();
String botId() default "primary";
}