migration
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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";
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user