2021-12-24 15:45:31 +08:00

22 lines
370 B
Java

package cn.montaro.aria2.annotation;
import java.lang.annotation.*;
/**
* Description:
*
* @author ZhangJiaYu
* @date 2021/12/22
*/
@Inherited
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Aria2Method {
/**
* 调用的方法名称
* 如 aria2.addUri aria2.listMethods
* @return
*/
String value();
}