11 lines
307 B
Java
11 lines
307 B
Java
package dev.w1zzrd.asm;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target({ElementType.CONSTRUCTOR, ElementType.METHOD})
|
|
public @interface Inject { }
|