host.anzo.commons.annotations.webserver.WebSocketsArea Maven / Gradle / Ivy
package host.anzo.commons.annotations.webserver;
import host.anzo.classindex.IndexAnnotated;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author ANZO
* @since 9/20/2023
*/
@IndexAnnotated
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface WebSocketsArea {
String path();
}