New stuffs

This commit is contained in:
Dawson
2022-08-25 11:00:51 -04:00
parent 88d8c5b82c
commit 8cf842493b
71 changed files with 958 additions and 212 deletions
@@ -0,0 +1,11 @@
package dev.brighten.ac.utils;
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.FIELD, ElementType.METHOD, ElementType.TYPE})
public @interface Async {
}